| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.ComponentModel.DataAnnotations; |
| | 4 | | using System.Linq; |
| | 5 | | using System.Threading.Tasks; |
| | 6 | |
|
| | 7 | | namespace MUNity.Database.Models.Resolution; |
| | 8 | |
|
| | 9 | | public class ResaAmendment |
| | 10 | | { |
| | 11 | | [Key] |
| 4 | 12 | | public string ResaAmendmentId { get; set; } |
| | 13 | |
|
| 0 | 14 | | public ResaElement Resolution { get; set; } |
| | 15 | |
|
| 0 | 16 | | public string SubmitterName { get; set; } |
| | 17 | |
|
| | 18 | | //public Simulation.SimulationUser Submitter { get; set; } |
| | 19 | |
|
| | 20 | | //public List<Simulation.SimulationUser> Supporter { get; set; } |
| | 21 | |
|
| 0 | 22 | | public virtual string ResaAmendmentType { get; } |
| | 23 | |
|
| 0 | 24 | | public bool Activated { get; set; } |
| | 25 | |
|
| 0 | 26 | | public DateTime SubmitTime { get; set; } |
| | 27 | |
|
| 3 | 28 | | public ResaAmendment() |
| 3 | 29 | | { |
| 3 | 30 | | this.ResaAmendmentId = Guid.NewGuid().ToString(); |
| 3 | 31 | | } |
| | 32 | | } |