Pull Request 33520 suggestions Injected AppSettings instead of using GetEnvironmentVariable at Services level When debugging only app.Services.GetRequiredService<IPCRBService>(); Get ready to use VSCode IDE Align .editorconfig files
10 lines
343 B
C#
10 lines
343 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; }
|
|
} |