| | | 1 | | using System; |
| | | 2 | | using System.Collections.Generic; |
| | | 3 | | using System.Text; |
| | | 4 | | |
| | | 5 | | namespace MUNity.Schema.Conference |
| | | 6 | | { |
| | | 7 | | public class ApplicationAvailableDelegation |
| | | 8 | | { |
| | | 9 | | public string DelegationId { get; set; } |
| | | 10 | | |
| | | 11 | | public string Name { get; set; } |
| | | 12 | | |
| | | 13 | | public List<ApplicationDelegationRoleSlot> Roles { get; set; } |
| | | 14 | | } |
| | | 15 | | |
| | | 16 | | public class ApplicationDelegationRoleSlot |
| | | 17 | | { |
| | 0 | 18 | | public string RoleName { get; set; } |
| | | 19 | | |
| | 0 | 20 | | public string CommitteeName { get; set; } |
| | | 21 | | |
| | 0 | 22 | | public decimal Costs { get; set; } |
| | | 23 | | |
| | 0 | 24 | | public string CountryName { get; set; } |
| | | 25 | | |
| | 0 | 26 | | public string CountryIso { get; set; } |
| | | 27 | | } |
| | | 28 | | } |