| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Text; |
| | 4 | |
|
| | 5 | | namespace MUNity.Schema.Conference |
| | 6 | | { |
| | 7 | |
|
| | 8 | | /// <summary> |
| | 9 | | /// A very small schema that the MUNity API will return when asking for a list of conferences. |
| | 10 | | /// </summary> |
| | 11 | | public class ConferenceSmallInfo |
| | 12 | | { |
| | 13 | | /// <summary> |
| | 14 | | /// The id of the conference. |
| | 15 | | /// </summary> |
| 0 | 16 | | public string ConferenceId { get; set; } |
| | 17 | |
|
| | 18 | | /// <summary> |
| | 19 | | /// The Name like: MUN Schleswig-Holstein 2021 |
| | 20 | | /// </summary> |
| 0 | 21 | | public string Name { get; set; } |
| | 22 | |
|
| | 23 | | /// <summary> |
| | 24 | | /// The full name like: Model United Nations Schleswig-Holstein 2021. |
| | 25 | | /// </summary> |
| 0 | 26 | | public string FullName { get; set; } |
| | 27 | | } |
| | 28 | | } |