diff --git a/PyroFetes/Models/Show.cs b/PyroFetes/Models/Show.cs index 0173665..6fdc7d2 100644 --- a/PyroFetes/Models/Show.cs +++ b/PyroFetes/Models/Show.cs @@ -6,6 +6,9 @@ public class Show { [Key] public int Id { get; set; } + [Required] + public string? Name { get; set; } + [Required, MaxLength(120)] public string? Place { get; set; }