This commit is contained in:
2021-07-27 22:01:56 +00:00
parent db09815b8c
commit 05da237f4d
2 changed files with 12 additions and 4 deletions

View File

@@ -30,7 +30,7 @@ namespace AyaNova.Models
public DateTime? ValidUntil { get; set; }
public DateTime? Submitted { get; set; }
public DateTime? Approved { get; set; }
//----
[Required]
@@ -104,6 +104,9 @@ namespace AyaNova.Models
[NotMapped]
public bool UserCanViewLoanerCosts { get; set; }
[NotMapped, JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
public AyaTypeId GenCopyAttachmentsFrom { get; set; }//INTERNAL, USED TO SIGNIFY ATTACHMENTS NEED TO BE COPIED ON SAVE
[NotMapped, JsonIgnore]
public AyaType AyaType { get => AyaType.Quote; }