Created
January 20, 2016 00:33
-
-
Save strich/4407abbe3c2be27cb813 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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