PCRB follow up client side logic
This commit is contained in:
13
MesaFabApproval.Shared/Models/PCRBFollowUpComment.cs
Normal file
13
MesaFabApproval.Shared/Models/PCRBFollowUpComment.cs
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user