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