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

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