sledgemapper/Sledgemapper.Api/Models/AuthResult.cs
Michele Scandura 7e3e645fc9
All checks were successful
continuous-integration/drone/push Build is passing
fixes and cleanup
2021-09-21 11:09:26 +01:00

11 lines
No EOL
244 B
C#

using System.Collections.Generic;
namespace Sledgemapper.Api.Models
{
public class AuthResult
{
public string Token { get; set; }
public bool Result { get; set; }
public List<string> Errors { get; set; }
}
}