11 lines
No EOL
246 B
C#
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; }
|
|
}
|
|
} |