| | | 1 | | using System; |
| | | 2 | | using System.Collections.Generic; |
| | | 3 | | using System.Text; |
| | | 4 | | |
| | | 5 | | namespace MUNity.Schema.Organization |
| | | 6 | | { |
| | | 7 | | public class OrganizationTinyInfo |
| | | 8 | | { |
| | | 9 | | public string OrganizationId { get; set; } |
| | | 10 | | |
| | | 11 | | public string Short { get; set; } |
| | | 12 | | |
| | | 13 | | public string Name { get; set; } |
| | | 14 | | } |
| | | 15 | | |
| | | 16 | | public class OrganizationDashboardInfo |
| | | 17 | | { |
| | 0 | 18 | | public string OrganizationId { get; set; } |
| | | 19 | | |
| | 0 | 20 | | public string Name { get; set; } |
| | | 21 | | |
| | 0 | 22 | | public string Short { get; set; } |
| | | 23 | | |
| | 0 | 24 | | public List<OrganizationDashboardProjectInfo> Projects { get; set; } |
| | | 25 | | |
| | 0 | 26 | | public List<OrganizationMemberInfo> Memebrs { get; set; } |
| | | 27 | | } |
| | | 28 | | |
| | | 29 | | public class OrganizationDashboardProjectInfo |
| | | 30 | | { |
| | | 31 | | public string ProjectId { get; set; } |
| | | 32 | | |
| | | 33 | | public string Name { get; set; } |
| | | 34 | | |
| | | 35 | | public int ConferenceCount { get; set; } |
| | | 36 | | } |
| | | 37 | | |
| | | 38 | | public class OrganizationMemberInfo |
| | | 39 | | { |
| | | 40 | | public string MemberUserName { get; set; } |
| | | 41 | | |
| | | 42 | | public string Forename { get; set; } |
| | | 43 | | |
| | | 44 | | public string LastName { get; set; } |
| | | 45 | | |
| | | 46 | | public string RoleName { get; set; } |
| | | 47 | | } |
| | | 48 | | } |