using System.Collections.Generic; namespace BusinessERP.JWTConfiguration { public class AuthResult { public string Token { get; set; } public string RefreshToken { get; set; } public bool Success { get; set; } public List Errors { get; set; } } }