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