using System.ComponentModel.DataAnnotations; namespace Webzine.WebApplication.ViewsModels.Titre; public class TitreComment { [Required] public int IdTitre { get; set; } [Required] [MinLength(2)] [MaxLength(30)] public string Auteur { get; set; } [Required] [MinLength(10)] [MaxLength(1000)] public string Contenu { get; set; } }