| | 1 | | using MUNity.Base; |
| | 2 | | using MUNity.Schema.General; |
| | 3 | | using System; |
| | 4 | | using System.Collections.Generic; |
| | 5 | | using System.Text; |
| | 6 | |
|
| | 7 | | namespace MUNity.Schema.Conference |
| | 8 | | { |
| | 9 | | public class ManageDelegationsInfo : IConferenceBreadcrumb |
| | 10 | | { |
| | 11 | | public string OrganizationId { get; set; } |
| | 12 | | public string OrganizationShort { get; set; } |
| | 13 | | public string OrganizationName { get; set; } |
| | 14 | | public string ProjectId { get; set; } |
| | 15 | | public string ProjectShort { get; set; } |
| | 16 | | public string ProjectName { get; set; } |
| | 17 | | public string ConferenceId { get; set; } |
| | 18 | | public string ConferenceName { get; set; } |
| | 19 | | public string ConferenceShort { get; set; } |
| | 20 | |
|
| | 21 | | public List<ManageDelegationInfo> Delegations { get; set; } |
| | 22 | | } |
| | 23 | |
|
| | 24 | | public class ManageDelegationInfo |
| | 25 | | { |
| | 26 | | public string DelegationId { get; set; } |
| | 27 | |
|
| | 28 | | public string DelegationName { get; set; } |
| | 29 | |
|
| | 30 | | public string DelegationShort { get; set; } |
| | 31 | |
|
| | 32 | | public List<ManageDelegationRoleInfo> Roles { get; set; } |
| | 33 | | } |
| | 34 | |
|
| | 35 | | public class ManageDelegationRoleInfo |
| | 36 | | { |
| 0 | 37 | | public int RoleId { get; set; } |
| | 38 | |
|
| 0 | 39 | | public string RoleName { get; set; } |
| | 40 | |
|
| 0 | 41 | | public string RoleCommitteeId { get; set; } |
| | 42 | |
|
| 0 | 43 | | public string RoleCommitteeName { get; set; } |
| | 44 | |
|
| 0 | 45 | | public bool HasParicipant { get; set; } |
| | 46 | |
|
| 0 | 47 | | public string Subtype { get; set; } |
| | 48 | |
|
| 0 | 49 | | public string DelegationId { get; set; } |
| | 50 | |
|
| 0 | 51 | | public string DelegationName { get; set; } |
| | 52 | |
|
| 0 | 53 | | public EApplicationStates ApplicationState { get; set; } |
| | 54 | | } |
| | 55 | | } |