PCRB follow up endpoints
This commit is contained in:
14
MesaFabApproval.Shared/Models/PCRBFollowUp.cs
Normal file
14
MesaFabApproval.Shared/Models/PCRBFollowUp.cs
Normal file
@ -0,0 +1,14 @@
|
||||
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;
|
||||
}
|
Reference in New Issue
Block a user