We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a369307 + 726174f commit 3fe1afcCopy full SHA for 3fe1afc
Inflow.Api/LoginModels/LoginRequest.cs
@@ -0,0 +1,8 @@
1
+namespace Inflow.Api.LoginModels
2
+{
3
+ public class LoginRequest
4
+ {
5
+ public string Login { get; set; }
6
+ public string Password { get; set; }
7
+ }
8
+}
Inflow.Api/LoginModels/RegisterRequest.cs
@@ -0,0 +1,10 @@
+ public class RegisterRequest
+ public string FullName { get; set; }
+ public string Phone { get; set; }
9
10
0 commit comments