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

namespace DevHive.Services.Models.User
{
	public class FriendshipServiceModel
	{
		public Guid BaseUserId { get; set; }

		public Guid FriendUserId { get; set; }
	}
}