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