Created UserCertificationWorker
This commit is contained in:
13
FabApprovalWorkerService/Models/UserCertificationRecord.cs
Normal file
13
FabApprovalWorkerService/Models/UserCertificationRecord.cs
Normal file
@ -0,0 +1,13 @@
|
||||
namespace FabApprovalWorkerService.Models;
|
||||
|
||||
public class UserCertificationRecord {
|
||||
public required string FirstName { get; set; }
|
||||
public required string LastName { get; set; }
|
||||
public required string Email { get; set; }
|
||||
public bool IsCleansCertified { get; set; }
|
||||
public bool IsAnyLevelCertified { get; set; }
|
||||
public bool IsPackagingLabelingCertified { get; set; }
|
||||
public bool IsEpiProCertified { get; set; }
|
||||
public bool IsFqaCertified { get; set; }
|
||||
public bool IsFqaAssessmentCertified { get; set; }
|
||||
}
|
Reference in New Issue
Block a user