22 lines
463 B
C#
22 lines
463 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 RefreshTokenRequest
|
||
{
|
||
/// <summary>
|
||
/// 过期的token
|
||
/// </summary>
|
||
public string Token { get; set; }
|
||
|
||
/// <summary>
|
||
/// 刷新token
|
||
/// </summary>
|
||
public string RefreshToken { get; set; }
|
||
}
|
||
}
|