13 lines
537 B
C#
13 lines
537 B
C#
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; }
|
|
} |