RoleFormViewModel.cs 208 B

12345678910
  1. using System.ComponentModel.DataAnnotations;
  2. namespace bitforum.Models.Views
  3. {
  4. public class RoleFormViewModel
  5. {
  6. [Required, StringLength(256)]
  7. public string Name { get; set; }
  8. }
  9. }