Skip to content

Commit 3fe1afc

Browse files
Merge pull request #47 from DiyorMarket/create-loginmodels
Create loginmodels
2 parents a369307 + 726174f commit 3fe1afc

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed
+8
Original file line numberDiff line numberDiff line change
@@ -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+
}
+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
namespace Inflow.Api.LoginModels
2+
{
3+
public class RegisterRequest
4+
{
5+
public string Login { get; set; }
6+
public string Password { get; set; }
7+
public string FullName { get; set; }
8+
public string Phone { get; set; }
9+
}
10+
}

0 commit comments

Comments
 (0)