2024-04-19 15:57:02 -07:00

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; }
}