17 lines
340 B
C#
17 lines
340 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LearningOfficer.OA.Common.Dtos.LoginMobile
|
|
{
|
|
public class RefreshTokenRequest
|
|
{
|
|
/// <summary>
|
|
/// 过期的token
|
|
/// </summary>
|
|
public string Token { get; set; }
|
|
}
|
|
}
|