Files
webzine/Webzine.WebApplication/ViewsModels/Titre/TitreComment.cs

19 lines
372 B
C#

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; }
}