aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Web/Models/Identity/Role/CreateRoleWebModel.cs
blob: 859cdd9388c7918dc5038e0a01b60e0150ccb117 (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.Identity.Role
{
	public class CreateRoleWebModel
	{
		[NotNull]
		[Required]
		[MinLength(3)]
		[MaxLength(50)]
		public string Name { get; set; }
	}
}