| | | 1 | | using System; |
| | | 2 | | using System.Collections.Generic; |
| | | 3 | | using System.Collections.ObjectModel; |
| | | 4 | | using System.ComponentModel; |
| | | 5 | | using System.Runtime.CompilerServices; |
| | | 6 | | using System.Text; |
| | | 7 | | |
| | | 8 | | namespace MUNity.Models.Resolution |
| | | 9 | | { |
| | | 10 | | /// <summary> |
| | | 11 | | /// The header and information of a resoltion. |
| | | 12 | | /// </summary> |
| | | 13 | | public partial class ResolutionHeader |
| | | 14 | | { |
| | | 15 | | |
| | 0 | 16 | | public string ResolutionHeaderId { get; set; } |
| | | 17 | | |
| | | 18 | | /// <summary> |
| | | 19 | | /// The name to find the document inside a register or list. This should not be used as the display name |
| | | 20 | | /// inside the resolution use the topic property for that case. |
| | | 21 | | /// The name could also be a number you give like: 1244 |
| | | 22 | | /// </summary> |
| | 0 | 23 | | public string Name { get; set; } |
| | | 24 | | |
| | | 25 | | /// <summary> |
| | | 26 | | /// A longer version of the name for example: United Nations Security Council Resolution 1244 |
| | | 27 | | /// </summary> |
| | 0 | 28 | | public string FullName { get; set; } |
| | | 29 | | |
| | | 30 | | /// <summary> |
| | | 31 | | /// The topic of the resolution. This should be displayed as the header of a resolution. |
| | | 32 | | /// </summary> |
| | 0 | 33 | | public string Topic { get; set; } |
| | | 34 | | |
| | | 35 | | /// <summary> |
| | | 36 | | /// The agenda item of the resolution. |
| | | 37 | | /// </summary> |
| | 0 | 38 | | public string AgendaItem { get; set; } |
| | | 39 | | |
| | | 40 | | /// <summary> |
| | | 41 | | /// The session for example: 4011th meeting |
| | | 42 | | /// or in case of your conference it could be: Day 2/Sess: 1 |
| | | 43 | | /// </summary> |
| | 0 | 44 | | public string Session { get; set; } |
| | | 45 | | |
| | | 46 | | |
| | | 47 | | /// <summary> |
| | | 48 | | /// The name of the Submitter of the resolution. |
| | | 49 | | /// </summary> |
| | 0 | 50 | | public string SubmitterName { get; set; } |
| | | 51 | | |
| | | 52 | | /// <summary> |
| | | 53 | | /// The Name of the committee, for example: The Security Council |
| | | 54 | | /// </summary> |
| | 0 | 55 | | public string CommitteeName { get; set; } |
| | | 56 | | |
| | | 57 | | |
| | 0 | 58 | | public string SupporterNames { get; set; } |
| | | 59 | | |
| | | 60 | | /// <summary> |
| | | 61 | | /// Creates a new resolution Header. |
| | | 62 | | /// </summary> |
| | 0 | 63 | | public ResolutionHeader() |
| | 0 | 64 | | { |
| | 0 | 65 | | this.ResolutionHeaderId = Guid.NewGuid().ToString(); |
| | 0 | 66 | | } |
| | | 67 | | |
| | | 68 | | } |
| | | 69 | | } |