| | 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 | | { |
| | 18 | | public string OrganizationId { get; set; } |
| | 19 | |
|
| | 20 | | public string Name { get; set; } |
| | 21 | |
|
| | 22 | | public string Short { get; set; } |
| | 23 | |
|
| | 24 | | public List<OrganizationDashboardProjectInfo> Projects { get; set; } |
| | 25 | |
|
| | 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 | | { |
| 0 | 40 | | public string MemberUserName { get; set; } |
| | 41 | |
|
| 0 | 42 | | public string Forename { get; set; } |
| | 43 | |
|
| 0 | 44 | | public string LastName { get; set; } |
| | 45 | |
|
| 0 | 46 | | public string RoleName { get; set; } |
| | 47 | | } |
| | 48 | | } |