| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Linq; |
| | 4 | | using System.Threading.Tasks; |
| | 5 | |
|
| | 6 | | namespace MUNity.Database.Models.Resolution; |
| | 7 | |
|
| | 8 | | public class ResaPreambleParagraph |
| | 9 | | { |
| 4 | 10 | | public string ResaPreambleParagraphId { get; set; } |
| | 11 | |
|
| 4 | 12 | | public string Text { get; set; } = ""; |
| | 13 | |
|
| 4 | 14 | | public bool IsLocked { get; set; } = false; |
| | 15 | |
|
| 4 | 16 | | public bool IsCorrected { get; set; } = false; |
| | 17 | |
|
| 4 | 18 | | public string Comment { get; set; } = ""; |
| | 19 | |
|
| 2 | 20 | | public ResaElement ResaElement { get; set; } |
| 2 | 21 | | public int OrderIndex { get; set; } |
| | 22 | |
|
| 2 | 23 | | public ResaPreambleParagraph() |
| 2 | 24 | | { |
| 2 | 25 | | this.ResaPreambleParagraphId = Guid.NewGuid().ToString(); |
| 2 | 26 | | } |
| | 27 | | } |