PCRB webassembly
This commit is contained in:
20
MesaFabApproval.Shared/Models/PCR3Document.cs
Normal file
20
MesaFabApproval.Shared/Models/PCR3Document.cs
Normal file
@ -0,0 +1,20 @@
|
||||
using MesaFabApproval.Shared.Utilities;
|
||||
|
||||
namespace MesaFabApproval.Shared.Models;
|
||||
|
||||
public class PCR3Document {
|
||||
public int ID { get; set; }
|
||||
public required int PlanNumber { get; set; }
|
||||
public required string DocType { get; set; }
|
||||
public string DocNumbers { get; set; } = "N/A";
|
||||
public DateTime CompletedDate { get; set; } = DateTimeUtilities.MAX_DT;
|
||||
public int CompletedByID { get; set; } = 0;
|
||||
public User? CompletedBy { get; set; }
|
||||
public string Comment { get; set; } = string.Empty;
|
||||
public int ECNNumber { get; set; } = 0;
|
||||
|
||||
public string GetEcnNumberString() {
|
||||
if (this.ECNNumber > 0) return this.ECNNumber.ToString();
|
||||
return string.Empty;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user