Tucker Chase (CSC FI SPS MESLEO) 123bbdb9fe Merged PR 34240: Updates to PCR3 document section
Updates to PCR3 document section
2025-01-15 16:52:17 +01:00

20 lines
714 B
C#

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; } = string.Empty;
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;
}
}