aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Data/RelationModels/UserFriends.cs
blob: 31bdee25f8c3bbf6e0b05fc8ed755572b1f86bc7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using DevHive.Data.Models;

namespace DevHive.Data.RelationModels
{
	[Table("UserFriends")]
	public class UserFriends
	{
		public Guid UserId { get; set; }
		public User User { get; set; }

		public Guid FriendId { get; set; }
		public User Friend { get; set; }
	}
}