/src/SampleLibrary/ISampleGenericService.cs

http://github.com/philiplaureano/LinFu · C# · 7 lines · 7 code · 0 blank · 0 comment · 0 complexity · 3ae3b56461cbe852bdcdfbfe0a481d90 MD5 · raw file

  1. namespace SampleLibrary
  2. {
  3. public interface ISampleGenericService<T>
  4. {
  5. bool Called { get; }
  6. }
  7. }