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

namespace DevHive.Services.Models.Identity
{
	public class UpdateUserServiceModel : UserServiceModel
	{
		public Guid Id { get; set; }
	}
}