/src/SampleLibrary/IOC/ISampleServiceOfT.cs
http://github.com/philiplaureano/LinFu · C# · 9 lines · 9 code · 0 blank · 0 comment · 0 complexity · 0fb0face692f75e60d266f52b1983e25 MD5 · raw file
- namespace SampleLibrary.IOC
- {
- public interface ISampleService<T>
- {
- int Int { get; }
- string Text { get; }
- bool Bool { get; }
- }
- }