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.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/DevHive.Data/Models/User.cs b/src/DevHive.Data/Models/User.cs
index 2ac7adf..df440d5 100644
--- a/src/DevHive.Data/Models/User.cs
+++ b/src/DevHive.Data/Models/User.cs
@@ -19,15 +19,15 @@ namespace DevHive.Data.Models
/// Languages that the user uses or is familiar with
/// </summary>
// [Unique]
- public HashSet<Language> Languages { get; set; }
+ public HashSet<Language> Languages { get; set; } = new();
/// <summary>
/// Technologies that the user uses or is familiar with
/// </summary>
- public HashSet<Technology> Technologies { get; set; } = new HashSet<Technology>();
+ public HashSet<Technology> Technologies { get; set; } = new();
- public HashSet<Role> Roles { get; set; } = new HashSet<Role>();
+ public HashSet<Role> Roles { get; set; } = new();
- public HashSet<User> Friends { get; set; } = new HashSet<User>();
+ public HashSet<User> Friends { get; set; } = new();
}
}