2025-03-11 20:12:26 -07:00

15 lines
528 B
C#

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;
}