namespace FabApprovalWorkerService.Models; public class CorrectiveAction { public required int CANo { get; set; } public bool ApprovalStatus { get; set; } public DateTime FollowUpDate { get; set; } public DateTime ClosedDate { get; set; } public int QAID { get; set; } public required string CATitle { get; set; } }