aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Web/Models/Identity/Role/UpdateRoleWebModel.cs
blob: 254affc74c80cbfeda99f926f201d833b678fd18 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;
using System.ComponentModel.DataAnnotations;
using System.Diagnostics.CodeAnalysis;

namespace DevHive.Web.Models.Identity.Role
{
	public class UpdateRoleWebModel : RoleWebModel
	{
		[NotNull]
		[Required]
		public Guid Id { get; set; }
	}
}