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