aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Services/Models/Identity/RegisterServiceModel.cs
diff options
context:
space:
mode:
authorSyndamia <kamen.d.mladenov@protonmail.com>2020-12-15 10:27:55 +0200
committerSyndamia <kamen.d.mladenov@protonmail.com>2020-12-15 10:27:55 +0200
commit89734a6561532e8ab9a657fc6417747d837cea99 (patch)
tree584c20d34cbbe19a8f3ddb34f226327eb6995ddd /src/DevHive.Services/Models/Identity/RegisterServiceModel.cs
parent09c8fc48a6a49c3c36df69ba2747088ac652054b (diff)
downloadDevHive-89734a6561532e8ab9a657fc6417747d837cea99.tar
DevHive-89734a6561532e8ab9a657fc6417747d837cea99.tar.gz
DevHive-89734a6561532e8ab9a657fc6417747d837cea99.zip
Moved user service models into their own folder and updated their namespaces
Diffstat (limited to 'src/DevHive.Services/Models/Identity/RegisterServiceModel.cs')
-rw-r--r--src/DevHive.Services/Models/Identity/RegisterServiceModel.cs11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/DevHive.Services/Models/Identity/RegisterServiceModel.cs b/src/DevHive.Services/Models/Identity/RegisterServiceModel.cs
deleted file mode 100644
index 45f42d2..0000000
--- a/src/DevHive.Services/Models/Identity/RegisterServiceModel.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-namespace DevHive.Services.Models.Identity
-{
- public class RegisterServiceModel
- {
- public string UserName { get; set; }
- public string Email { get; set; }
- public string FirstName { get; set; }
- public string LastName { get; set; }
- public string Password { get; set; }
- }
-}