| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Text; |
| | 4 | |
|
| | 5 | | namespace MUNity.Schema.Conference |
| | 6 | | { |
| | 7 | | public class CommitteeSeatsInfo |
| | 8 | | { |
| | 9 | | public string CommitteeId { get; set; } |
| | 10 | |
|
| | 11 | | public string CommitteeName { get; set; } |
| | 12 | |
|
| | 13 | | public string CommitteeShort { get; set; } |
| | 14 | |
|
| | 15 | | public string CommitteeArticle { get; set; } |
| | 16 | |
|
| | 17 | | public List<CommitteeSeatInfo> Seats { get; set; } |
| | 18 | |
|
| | 19 | | public List<CountryInfo> Countries { get; set; } |
| | 20 | |
|
| | 21 | | public List<DelegationInfo> Delegations { get; set; } |
| | 22 | | } |
| | 23 | |
|
| | 24 | | public class CommitteeSeatInfo |
| | 25 | | { |
| 0 | 26 | | public int RoleId { get; set; } |
| | 27 | |
|
| 0 | 28 | | public string RoleName { get; set; } |
| | 29 | |
|
| 0 | 30 | | public int? CountryId { get; set; } |
| | 31 | |
|
| 0 | 32 | | public string CountryName { get; set; } |
| | 33 | |
|
| 0 | 34 | | public string DelegationId { get; set; } |
| | 35 | |
|
| 0 | 36 | | public string DelegationName { get; set; } |
| | 37 | |
|
| 0 | 38 | | public string Subtypes { get; set; } |
| | 39 | |
|
| 0 | 40 | | public List<CommitteeParticipation> Participants { get; set; } |
| | 41 | | } |
| | 42 | |
|
| | 43 | | public class CommitteeParticipation |
| | 44 | | { |
| | 45 | | public int ParticipationId { get; set; } |
| | 46 | |
|
| | 47 | | public string Username { get; set; } |
| | 48 | |
|
| | 49 | | public string DisplayName { get; set; } |
| | 50 | | } |
| | 51 | |
|
| | 52 | | public class CountryInfo |
| | 53 | | { |
| | 54 | | public int CountryId { get; set; } |
| | 55 | |
|
| | 56 | | public string Name { get; set; } |
| | 57 | | } |
| | 58 | |
|
| | 59 | | public class DelegationInfo |
| | 60 | | { |
| | 61 | | public string DelegationId { get; set; } |
| | 62 | |
|
| | 63 | | public string DelegationName { get; set; } |
| | 64 | | } |
| | 65 | | } |