| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.ComponentModel.DataAnnotations; |
| | 4 | | using System.Text; |
| | 5 | |
|
| | 6 | | namespace MUNity.Schema.Conference |
| | 7 | | { |
| | 8 | | public class CreateCommitteeSeatRequest |
| | 9 | | { |
| | 10 | | [Required] |
| 0 | 11 | | public string RoleName { get; set; } |
| | 12 | |
|
| | 13 | | [Required] |
| 0 | 14 | | public string CommitteeId { get; set; } |
| | 15 | |
|
| 0 | 16 | | public int CountryId { get; set; } = -1; |
| | 17 | |
|
| 0 | 18 | | public string DelegationId { get; set; } = null; |
| | 19 | |
|
| 0 | 20 | | public string Subtype { get; set; } |
| | 21 | | } |
| | 22 | |
|
| | 23 | | public class CreateSeatResponse : AbstractResponse |
| | 24 | | { |
| | 25 | |
|
| | 26 | | public int CreatedRoleId { get; set; } |
| | 27 | | } |
| | 28 | |
|
| | 29 | | public class CreateFreeSeatRequest |
| | 30 | | { |
| | 31 | | [Required] |
| | 32 | | public string RoleName { get; set; } |
| | 33 | |
|
| | 34 | | [Required] |
| | 35 | | public string ConferenceId { get; set; } |
| | 36 | |
|
| | 37 | | public int CountryId { get; set; } = -1; |
| | 38 | |
|
| | 39 | | public string DelegationId { get; set; } = null; |
| | 40 | |
|
| | 41 | | public string Subtype { get; set; } |
| | 42 | | } |
| | 43 | | } |