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

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