CSharp.Template/YuanXuan.IM.Common/Dtos/LoginMobile/MobileTokenInfo.cs

25 lines
546 B
C#

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
{
/// <summary>
/// 用户Id
/// </summary>
public string UserId { get; set; }
/// <summary>
/// 用户名称
/// </summary>
public string UserName { get; set; }
/// <summary>
/// Jwt_id
/// </summary>
public string Jwt_id { get; set; }
}
}