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