using MesaFabApproval.Shared.Utilities; namespace MesaFabApproval.Shared.Models; public class PCRBFollowUp { public int ID { get; set; } public required int PlanNumber { get; set; } public required int Step { get; set; } public required DateTime FollowUpDate { get; set; } public bool IsComplete { get; set; } = false; public bool IsDeleted { get; set; } = false; public DateTime CompletedDate { get; set; } = DateTimeUtilities.MAX_DT; public string Comments { get; set; } = string.Empty; }