| | | 1 | | using System; |
| | | 2 | | using System.Collections.Generic; |
| | | 3 | | using System.Text; |
| | | 4 | | |
| | | 5 | | namespace MUNity.Schema.Conference |
| | | 6 | | { |
| | | 7 | | public class CommitteeSeatsInfo |
| | | 8 | | { |
| | 0 | 9 | | public string CommitteeId { get; set; } |
| | | 10 | | |
| | 0 | 11 | | public string CommitteeName { get; set; } |
| | | 12 | | |
| | 0 | 13 | | public string CommitteeShort { get; set; } |
| | | 14 | | |
| | 0 | 15 | | public string CommitteeArticle { get; set; } |
| | | 16 | | |
| | 0 | 17 | | public List<CommitteeSeatInfo> Seats { get; set; } |
| | | 18 | | |
| | 0 | 19 | | public List<CountryInfo> Countries { get; set; } |
| | | 20 | | |
| | 0 | 21 | | public List<DelegationInfo> Delegations { get; set; } |
| | | 22 | | } |
| | | 23 | | |
| | | 24 | | public class CommitteeSeatInfo |
| | | 25 | | { |
| | | 26 | | public int RoleId { get; set; } |
| | | 27 | | |
| | | 28 | | public string RoleName { get; set; } |
| | | 29 | | |
| | | 30 | | public int? CountryId { get; set; } |
| | | 31 | | |
| | | 32 | | public string CountryName { get; set; } |
| | | 33 | | |
| | | 34 | | public string DelegationId { get; set; } |
| | | 35 | | |
| | | 36 | | public string DelegationName { get; set; } |
| | | 37 | | |
| | | 38 | | public string Subtypes { get; set; } |
| | | 39 | | |
| | | 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 | | } |