Add F4T2NumberApproval and F4T2ExpirationDate in Staff.css

This commit is contained in:
2025-10-03 16:57:23 +01:00
parent 3f1880b702
commit c128cd453d

View File

@@ -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<Show>? Shows { get; set; }
}