monorepo/web/Backend/Services/TestService.cs

14 lines
147 B
C#

namespace Backend.Services;
public class TestService : ITestService
{
public TestService()
{
}
public void Test()
{
}
}