aboutsummaryrefslogtreecommitdiff
path: root/src/Data/DevHive.Data.Models/User.cs
diff options
context:
space:
mode:
authortranstrike <transtrike@gmail.com>2021-03-17 17:31:21 +0200
committertranstrike <transtrike@gmail.com>2021-03-17 17:31:21 +0200
commit9b04b4f2b031a3c631dba65908f277996015ae05 (patch)
tree2decfa3d77a9ae6d52ea0636f4acde1ac9bb153f /src/Data/DevHive.Data.Models/User.cs
parent99e3bbad3f4d2ab5999d0de508907e5985e721a4 (diff)
downloadDevHive-friends_functionality.tar
DevHive-friends_functionality.tar.gz
DevHive-friends_functionality.zip
Removed interfaces for pure classesfriends_functionality
Diffstat (limited to 'src/Data/DevHive.Data.Models/User.cs')
-rw-r--r--src/Data/DevHive.Data.Models/User.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Data/DevHive.Data.Models/User.cs b/src/Data/DevHive.Data.Models/User.cs
index bac5425..eb5ae41 100644
--- a/src/Data/DevHive.Data.Models/User.cs
+++ b/src/Data/DevHive.Data.Models/User.cs
@@ -1,14 +1,13 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
-using DevHive.Data.Models.Interfaces;
using DevHive.Data.Models.Relational;
using Microsoft.AspNetCore.Identity;
namespace DevHive.Data.Models
{
[Table("Users")]
- public class User : IdentityUser<Guid>, IUser
+ public class User : IdentityUser<Guid>
{
public string FirstName { get; set; }