using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YuanXuan.IM.Common.Dtos.LoginMobile { public class MobileTokenInfo { /// /// 用户Id /// public string UserId { get; set; } /// /// 用户名称 /// public string UserName { get; set; } /// /// Jwt_id /// public string Jwt_id { get; set; } } }