sledgemapper/Sledgemapper.Api/Models/AuthResult.cs
2021-02-20 00:18:07 +00:00

11 lines
No EOL
246 B
C#

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; }
}
}