I have a interface like this:
public interface IMyInterface<T> where T:class { long OS { get; set; } T App { get; set; } } and another interface like this:
public interface IMyInterfaces { List<IMyInterface<T>> Subscribers { get; set; } //this line give me error } I got error