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