aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Services/Models/Identity/Role/CreateRoleServiceModel.cs
blob: 3bed3fdd947441101c814b15127c6654ac9682a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
using System.ComponentModel.DataAnnotations;
using System.Diagnostics.CodeAnalysis;

namespace DevHive.Services.Models.Identity.Role
{
	public class CreateRoleServiceModel
	{
		public string Name { get; set; }
	}
}