PCRB follow up client side logic

This commit is contained in:
Chase Tucker
2025-03-19 10:01:35 -07:00
parent 4871668a90
commit cc4781b990
45 changed files with 3082 additions and 1008 deletions

View File

@ -9,6 +9,7 @@ public class PCRBFollowUp {
public required DateTime FollowUpDate { get; set; }
public bool IsComplete { get; set; } = false;
public bool IsDeleted { get; set; } = false;
public bool IsPendingApproval { get; set; } = false;
public DateTime CompletedDate { get; set; } = DateTimeUtilities.MAX_DT;
public string Comments { get; set; } = string.Empty;
public DateTime UpdateDate { get; set; } = DateTime.Now;
}