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

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