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

namespace DevHive.Services.Models.Identity.User
{
	public class UpdateFriendServiceModel
	{
		public Guid Id { get; set; }
		public string UserName { get; set; }
	}
}