| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Linq; |
| | 4 | | using System.Threading.Tasks; |
| | 5 | |
|
| | 6 | | namespace MUNityCore.Dtos.Resolutions |
| | 7 | | { |
| | 8 | | public class CreateAmendmentPattern |
| | 9 | | { |
| 0 | 10 | | public string ResolutionId { get; set; } |
| | 11 | |
|
| 0 | 12 | | public EAmendmentTypes AmendmentType { get; set; } |
| | 13 | |
|
| 0 | 14 | | public string ParagraphId { get; set; } = string.Empty; |
| | 15 | |
|
| 0 | 16 | | public string NewValue { get; set; } = ""; |
| | 17 | |
|
| 0 | 18 | | public int NewIndex { get; set; } |
| | 19 | |
|
| | 20 | |
|
| 0 | 21 | | public string SubmitterName { get; set; } = ""; |
| | 22 | |
|
| 0 | 23 | | public CreateAmendmentPattern(string resolutionId) |
| 0 | 24 | | { |
| 0 | 25 | | this.ResolutionId = resolutionId; |
| 0 | 26 | | } |
| | 27 | |
|
| 0 | 28 | | public CreateAmendmentPattern() |
| 0 | 29 | | { |
| | 30 | |
|
| 0 | 31 | | } |
| | 32 | | } |
| | 33 | | } |