aboutsummaryrefslogtreecommitdiff
path: root/src/Data/DevHive.Data.Models/User.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Data/DevHive.Data.Models/User.cs')
-rw-r--r--src/Data/DevHive.Data.Models/User.cs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/Data/DevHive.Data.Models/User.cs b/src/Data/DevHive.Data.Models/User.cs
index feae197..f6cd3b9 100644
--- a/src/Data/DevHive.Data.Models/User.cs
+++ b/src/Data/DevHive.Data.Models/User.cs
@@ -13,7 +13,7 @@ namespace DevHive.Data.Models
public string LastName { get; set; }
- public ProfilePicture ProfilePicture { get; set; } = new() { PictureURL = "/assets/icons/tabler-icon-user.svg" };
+ public ProfilePicture ProfilePicture { get; set; } = new();
public HashSet<Language> Languages { get; set; } = new();
@@ -26,7 +26,5 @@ namespace DevHive.Data.Models
public HashSet<User> Friends { get; set; } = new();
public HashSet<Comment> Comments { get; set; } = new();
-
- public HashSet<RatedPost> RatedPosts { get; set; } = new();
}
}