blob: 3870481a7eb59c03caf08b1dd7e446e481d03ef2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using System;
using System.ComponentModel.DataAnnotations;
using System.Diagnostics.CodeAnalysis;
namespace DevHive.Web.Models.Identity.Role
{
public class UpdateRoleWebModel
{
[NotNull]
[Required]
[MinLength(3)]
[MaxLength(50)]
public string Name { get; set; }
}
}
|