11 lines
345 B
C#
11 lines
345 B
C#
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; }
|
|
}
|