aboutsummaryrefslogtreecommitdiff
path: root/src/Data/DevHive.Data.Models/Friendship.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Data/DevHive.Data.Models/Friendship.cs')
-rw-r--r--src/Data/DevHive.Data.Models/Friendship.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/Data/DevHive.Data.Models/Friendship.cs b/src/Data/DevHive.Data.Models/Friendship.cs
deleted file mode 100644
index 91ac9c7..0000000
--- a/src/Data/DevHive.Data.Models/Friendship.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-using System;
-using System.ComponentModel.DataAnnotations.Schema;
-
-namespace DevHive.Data.Models
-{
- //class for handling the many to many relationship betwen users and users for friends
- public class Friendship
- {
- [NotMapped]
- public Guid BaseUserId { get; set; }
- [NotMapped]
- public Guid FriendUserId { get; set; }
-
- public User BaseUser { get; set; }
- public User FriendUser { get; set; }
- }
-}