aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Data/Models/User.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DevHive.Data/Models/User.cs')
-rw-r--r--src/DevHive.Data/Models/User.cs33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/DevHive.Data/Models/User.cs b/src/DevHive.Data/Models/User.cs
deleted file mode 100644
index 983d073..0000000
--- a/src/DevHive.Data/Models/User.cs
+++ /dev/null
@@ -1,33 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel.DataAnnotations.Schema;
-using DevHive.Data.Interfaces.Models;
-using DevHive.Data.RelationModels;
-using Microsoft.AspNetCore.Identity;
-
-namespace DevHive.Data.Models
-{
- [Table("Users")]
- public class User : IdentityUser<Guid>, IUser
- {
- public string FirstName { get; set; }
-
- public string LastName { get; set; }
-
- public ProfilePicture ProfilePicture { get; set; }
-
- public HashSet<Language> Languages { get; set; } = new();
-
- public HashSet<Technology> Technologies { get; set; } = new();
-
- public HashSet<Role> Roles { get; set; } = new();
-
- public HashSet<Post> Posts { get; set; } = new();
-
- public HashSet<User> Friends { get; set; } = new();
-
- public HashSet<Comment> Comments { get; set; } = new();
-
- public HashSet<RatedPost> RatedPosts { get; set; } = new();
- }
-}