Files
mixtape/zero.Debug/TestData/TestService.cs
T

17 lines
212 B
C#

namespace zero.Debug.TestData
{
public class TestService : ITestService
{
public string GetName()
{
return "tobi";
}
}
public interface ITestService
{
string GetName();
}
}