diff --git a/PyroFetes/Models/Staff.cs b/PyroFetes/Models/Staff.cs index fd6d846..0c829d8 100644 --- a/PyroFetes/Models/Staff.cs +++ b/PyroFetes/Models/Staff.cs @@ -12,10 +12,10 @@ public class Staff [Required, MaxLength(60)] public string LastName { get; set; } = null!; - [MaxLength(100)] + [Required, MaxLength(100)] public string? Profession { get; set; } - [EmailAddress, MaxLength(120)] + [Required, MaxLength(120)] public string? Email { get; set; } public ICollection Shows { get; set; } = new List();