using System.ComponentModel.DataAnnotations; namespace Knots.Models; public class Role { public int Id { get; set; } [Required, MaxLength(50)] public string? Libelle { get; set; } }