Skip to content

Instantly share code, notes, and snippets.

@strich
Created January 20, 2016 00:33
Show Gist options
  • Select an option

  • Save strich/4407abbe3c2be27cb813 to your computer and use it in GitHub Desktop.

Select an option

Save strich/4407abbe3c2be27cb813 to your computer and use it in GitHub Desktop.
public class Project
{
public int ID { get; set; }
public string DisplayName { get; set; }
public Organisation OrganisationOwner { get; set; }
}
public class Organisation
{
public int ID { get; set; }
public string DisplayName { get; set; }
public List<ApplicationUser> Members { get; set; }
public List<Project> Projects { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment