PCRB follow up client side logic

This commit is contained in:
Chase Tucker
2025-03-19 10:01:35 -07:00
parent 4871668a90
commit cc4781b990
45 changed files with 3082 additions and 1008 deletions

View File

@ -0,0 +1,13 @@
using MesaFabApproval.Shared.Utilities;
namespace MesaFabApproval.Shared.Models;
public class PCRBFollowUpComment {
public int ID { get; set; }
public required int PlanNumber { get; set; }
public required int FollowUpID { get; set; }
public DateTime CommentDate { get; set; } = DateTime.Now;
public required int UserID { get; set; }
public User? User { get; set; }
public string Comment { get; set; } = string.Empty;
}