Actualiser PyroFetes/Models/Show.cs

This commit is contained in:
2025-10-02 15:00:09 +02:00
parent 21d3480b19
commit bb02df6323

View File

@@ -6,14 +6,14 @@ public class Show
{
[Key] public int Id { get; set; }
[MaxLength(120)]
[Required, MaxLength(120)]
public string? Place { get; set; }
[MaxLength(500)]
public string? Description { get; set; }
// Lien (chemin/URL/nom de fichier) vers le plan dimplémentation pyrotechnique
[MaxLength(500)]
[Required, MaxLength(500)]
public string? PyrotechnicImplementationPlan { get; set; }
public DateTime? Date { get; set; }