| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Text; |
| | 4 | |
|
| | 5 | | namespace MUNity.Schema.Organization |
| | 6 | | { |
| | 7 | | /// <summary> |
| | 8 | | /// The base model you will get by the MUNity API when requestiong an organization. |
| | 9 | | /// </summary> |
| | 10 | | public class OrganizationInformation |
| | 11 | | { |
| | 12 | | /// <summary> |
| | 13 | | /// The id of the organization. |
| | 14 | | /// </summary> |
| 0 | 15 | | public string OrganizationId { get; set; } |
| | 16 | |
|
| | 17 | | /// <summary> |
| | 18 | | /// The name of the organization for example Deutsche Model United Nations e.V. |
| | 19 | | /// </summary> |
| 0 | 20 | | public string OrganizationName { get; set; } |
| | 21 | |
|
| | 22 | | /// <summary> |
| | 23 | | /// The short name of the organization for example DMUN e.V. |
| | 24 | | /// </summary> |
| 0 | 25 | | public string OrganizationShort { get; set; } |
| | 26 | | } |
| | 27 | | } |