| | | 1 | | using System; |
| | | 2 | | using System.Collections.Generic; |
| | | 3 | | using System.Text; |
| | | 4 | | |
| | | 5 | | namespace MUNity.Schema.Project |
| | | 6 | | { |
| | | 7 | | /// <summary> |
| | | 8 | | /// The basic schema the MUNityAPI will sent when requestiong information about a project. |
| | | 9 | | /// </summary> |
| | | 10 | | public class ProjectInformation |
| | | 11 | | { |
| | | 12 | | /// <summary> |
| | | 13 | | /// The id of the project. |
| | | 14 | | /// </summary> |
| | 0 | 15 | | public string ProjectId { get; set; } |
| | | 16 | | |
| | | 17 | | /// <summary> |
| | | 18 | | /// The name for example: Model United Nations Schleswig-Holstein. |
| | | 19 | | /// </summary> |
| | 0 | 20 | | public string ProjectName { get; set; } |
| | | 21 | | |
| | | 22 | | /// <summary> |
| | | 23 | | /// The short name of the project for example: MUN-SH |
| | | 24 | | /// </summary> |
| | 0 | 25 | | public string ProjectShort { get; set; } |
| | | 26 | | |
| | | 27 | | /// <summary> |
| | | 28 | | /// The id of the organization that is hosting this project. |
| | | 29 | | /// </summary> |
| | 0 | 30 | | public string OrganizationId { get; set; } |
| | | 31 | | |
| | | 32 | | /// <summary> |
| | | 33 | | /// A list of conferences that is contained inside of this project. |
| | | 34 | | /// </summary> |
| | 0 | 35 | | public IEnumerable<Conference.ConferenceSmallInfo> Conferences { get; set; } |
| | | 36 | | } |
| | | 37 | | } |