Skip to content

Instantly share code, notes, and snippets.

View mattumotu's full-sized avatar

Matt Phillips mattumotu

  • United Kingdom
View GitHub Profile
public interface IFetchThings<T> where T : Fetched, IFetchable, System.IComparable<T>, new() {
...
}
public interface IFetchThings<T> {
T Fetch();
}
public interface ISecureFetchThings<T> : IFetchThings<T> {
T Fetch();
bool isLoggedOn();
void logOn();
}