diff --git a/PyroFetes/Models/Staff.cs b/PyroFetes/Models/Staff.cs index 60f4850..670adef 100644 --- a/PyroFetes/Models/Staff.cs +++ b/PyroFetes/Models/Staff.cs @@ -9,5 +9,7 @@ public class Staff [Required, MaxLength(60)] public string LastName { get; set; } = null!; [Required, MaxLength(100)] public string? Profession { get; set; } [Required, MaxLength(120)] public string? Email { get; set; } + [Required] public string? F4T2NumberApproval { get; set; } + [Required] public DateOnly F4T2ExpirationDate { get; set; } public ICollection? Shows { get; set; } } \ No newline at end of file