This commit is contained in:
2021-05-24 20:04:32 +00:00
parent 74c67e90fa
commit 2dc7af5823
10 changed files with 106 additions and 10 deletions

View File

@@ -12,12 +12,18 @@ namespace AyaNova.Models
public long Id { get; set; }
public uint Concurrency { get; set; }
public int DisplayOrder { get; set; } = 0;
//public int DisplayOrder { get; set; } = 0;
public int Sequence { get; set; }
[Required]
public string Task { get; set; }
[Required]
public WorkorderItemTaskCompletionType Status { get; set; } = WorkorderItemTaskCompletionType.Incomplete;
[NotMapped]
public string StatusViz { get; set; }
public long? CompletedByUserId { get; set; }
[NotMapped]
public string CompletedByUserViz { get; set; }
public DateTime? CompletedDate { get; set; }
//UTILITY FIELDS