using System; using System.Collections.Generic; using System.Text; namespace TEAMModelOS.Model.Common.Dtos { public class LoginResult { public string JwtToken { get; set; } public bool CheckTicket { get; set; } } }