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

17 lines
212 B
C#
Raw Normal View History

2020-05-13 14:06:11 +02:00
namespace zero.Debug.TestData
{
public class TestService : ITestService
{
public string GetName()
{
return "tobi";
}
}
public interface ITestService
{
string GetName();
}
}