| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Text; |
| | 4 | |
|
| | 5 | | namespace MUNity.Schema.Conference |
| | 6 | | { |
| | 7 | | /// <summary> |
| | 8 | | /// A structure given by the MUNity API when requesting small information of a committee. |
| | 9 | | /// </summary> |
| | 10 | | public class CommitteeSmallInfo |
| | 11 | | { |
| | 12 | | /// <summary> |
| | 13 | | /// The id of the committee |
| | 14 | | /// </summary> |
| 0 | 15 | | public string CommitteeId { get; set; } |
| | 16 | |
|
| | 17 | | /// <summary> |
| | 18 | | /// The default display name of the committee. Like General Assembly, Generalversammlung |
| | 19 | | /// </summary> |
| 0 | 20 | | public string Name { get; set; } |
| | 21 | |
|
| | 22 | | /// <summary> |
| | 23 | | /// The long version of the name of the committee, like: United Nations General Assembly, MUN-SH 2021 Generalver |
| | 24 | | /// </summary> |
| 0 | 25 | | public string FullName { get; set; } |
| | 26 | |
|
| | 27 | | /// <summary> |
| | 28 | | /// A short name for the committee like: GA, GV |
| | 29 | | /// </summary> |
| 0 | 30 | | public string CommitteeShort { get; set; } |
| | 31 | | } |
| | 32 | | } |