diff options
Diffstat (limited to 'src/Data/DevHive.Data.Models')
| -rw-r--r-- | src/Data/DevHive.Data.Models/Friendship.cs | 17 |
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; } - } -} |
