Selaa lähdekoodia

[Authentication] Added dbo for user login

develop
Robin Thoni 9 vuotta sitten
vanhempi
commit
ac3bc3bc70
2 muutettua tiedostoa jossa 10 lisäystä ja 0 poistoa
  1. 1
    0
      Authentication/Authentication.csproj
  2. 9
    0
      Authentication/DBO/BasicUserLogin.cs

+ 1
- 0
Authentication/Authentication.csproj Näytä tiedosto

@@ -83,6 +83,7 @@
83 83
     <Compile Include="Business\JWT\TokenValidationHandler.cs" />
84 84
     <Compile Include="Business\UserStorage.cs" />
85 85
     <Compile Include="DBO\BasicUserDbo.cs" />
86
+    <Compile Include="DBO\BasicUserLogin.cs" />
86 87
     <Compile Include="Properties\AssemblyInfo.cs" />
87 88
   </ItemGroup>
88 89
   <ItemGroup>

+ 9
- 0
Authentication/DBO/BasicUserLogin.cs Näytä tiedosto

@@ -0,0 +1,9 @@
1
+namespace iiie.Authentication.DBO
2
+{
3
+    public class BasicUserLogin
4
+    {
5
+        public string Username { get; set; }
6
+
7
+        public string Password { get; set; }
8
+    }
9
+}

Loading…
Peruuta
Tallenna