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