Mise à jour de 'WF-WebAdmin/WF-WebAdmin/Model/QuoteModel.cs'
continuous-integration/drone/push Build is failing Details

master
parent 6e4f1d8398
commit 1c7397fe87

@ -8,20 +8,20 @@ namespace WF_WebAdmin.Model
[Required] [Required]
[StringLength(300, ErrorMessage = "La citation ne peut pas dépasser les 300 caractère.")] [StringLength(300, ErrorMessage = "La citation ne peut pas dépasser les 300 caractère.")]
public string Content { get; set; } public string? Content { get; set; }
public int Like { get; set; } public int Like { get; set; }
[Required] [Required]
[StringLength(2, ErrorMessage = "La langue ne peut pas dépasser 2 caractère.")] [StringLength(2, ErrorMessage = "La langue ne peut pas dépasser 2 caractère.")]
public string Langue { get; set; } public string? Langue { get; set; }
public string Charac { get; set; } public string? Charac { get; set; }
public string ImgPath { get; set; } public string? ImgPath { get; set; }
public string TitleSrc { get; set; } public string? TitleSrc { get; set; }
public DateTime DateSrc { get; set; } public DateTime DateSrc { get; set; }
public string UserProposition { get; set; } public string? UserProposition { get; set; }
public bool IsValid { get; set; } public bool IsValid { get; set; }
} }
} }

Loading…
Cancel
Save