Skip to content

Instantly share code, notes, and snippets.

@rousso
Created June 18, 2013 09:20
Show Gist options
  • Save rousso/5803917 to your computer and use it in GitHub Desktop.
Save rousso/5803917 to your computer and use it in GitHub Desktop.
public interface IHierarchical<T> where T : IHierarchical<T>
{
T Parent { get; set; }
IList<T> Children { get; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment