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

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