Build auth API
This commit is contained in:
commit
dafe603a06
43 changed files with 1153 additions and 0 deletions
11
src/Robware.Data/DatabaseUser.cs
Normal file
11
src/Robware.Data/DatabaseUser.cs
Normal file
|
@ -0,0 +1,11 @@
|
|||
using Robware.Auth;
|
||||
using Robware.Data.States;
|
||||
|
||||
namespace Robware.Data {
|
||||
public class DatabaseUser : User {
|
||||
public DatabaseUser(UserState state) {
|
||||
Username = state.User_Email;
|
||||
Password = state.User_Password;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue