using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 用户登录输出 /// public class UserLoginOutput { /// /// 状态 /// public Model.eLoginStatus Status { get; set; } /// /// 用户 /// public UserDto User { get; set; } /// /// 令牌 /// public string Token { get; set; } } }