db and auth refactoring
This commit is contained in:
parent
0e1c16ab91
commit
aa472f9e29
45 changed files with 2182 additions and 697 deletions
11
Sledgemapper.Api/Models/AuthResult.cs
Normal file
11
Sledgemapper.Api/Models/AuthResult.cs
Normal file
|
@ -0,0 +1,11 @@
|
|||
using System.Collections.Generic;
|
||||
|
||||
namespace Sledgemapper.Models.Users
|
||||
{
|
||||
public class AuthResult
|
||||
{
|
||||
public string Token { get; set; }
|
||||
public bool Result { get; set; }
|
||||
public List<string> Errors { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue