aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Services/Models/Identity/Role/RoleServiceModel.cs
blob: 3f834ef783198fe7e5e509ed1dbc8cfc289b23d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
using System;

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