PCRB webassembly

This commit is contained in:
Chase Tucker
2024-05-13 14:33:27 -07:00
parent 9b7e3ef897
commit 89790f4fc1
50 changed files with 5466 additions and 677 deletions

View File

@ -0,0 +1,21 @@
using MesaFabApproval.Shared.Utilities;
namespace MesaFabApproval.Shared.Models;
public class PCRBActionItem {
public int ID { get; set; }
public required string Name { get; set; }
public bool Gating { get; set; } = false;
public bool ClosedStatus { get; set; } = false;
public DateTime? ClosedDate { get; set; } = DateTimeUtilities.MAX_DT;
public int ClosedByID { get; set; } = 0;
public User? ClosedBy { get; set; }
public required int UploadedByID { get; set; }
public User? UploadedBy { get; set; }
public DateTime UploadedDateTime { get; set; } = DateTime.Now;
public int ResponsiblePersonID { get; set; } = 0;
public User? ResponsiblePerson { get; set; }
public required int PlanNumber { get; set; }
public required int Step { get; set; }
public DateTime NotifyDate { get; set; } = DateTimeUtilities.MIN_DT;
}