using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel; namespace Yavsc.Model.RolesAndMembers { /// /// New role model. /// public class NewRoleModel { /// /// Gets or sets the name of the role. /// /// The name of the role. [Required] [StringLength(255)] [DisplayName("Nom du rĂ´le")] public string RoleName { get; set; } } }