| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Text; |
| | 4 | |
|
| | 5 | | namespace MUNity.Schema.Simulation.Resolution |
| | 6 | | { |
| | 7 | | public class ResolutionSmallInfo |
| | 8 | | { |
| | 9 | |
|
| 0 | 10 | | public string ResolutionId { get; set; } |
| | 11 | |
|
| 0 | 12 | | public DateTime LastChangedTime {get; set; } |
| | 13 | |
|
| 0 | 14 | | public string Name { get; set; } |
| | 15 | |
|
| 0 | 16 | | public bool AllowPublicEdit { get; set; } |
| | 17 | |
|
| 0 | 18 | | public bool AllowAmendments { get; set; } |
| | 19 | |
|
| 0 | 20 | | public string SubmitterName { get; set; } |
| | 21 | |
|
| 0 | 22 | | public int PreambleParagraphCount { get; set; } |
| | 23 | |
|
| 0 | 24 | | public int OperativeParagraphCount { get; set; } |
| | 25 | |
|
| 0 | 26 | | public int AmendmentCount { get; set; } |
| | 27 | | } |
| | 28 | | } |