消防培训系统服务器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
486 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace AX.FireTrainingSys.DTOs
{
/// <summary>
/// 刷新令牌信息。
/// </summary>
public class RefreshTokenInfo
{
/// <summary>
/// JWT令牌。
/// </summary>
public string Token { get; set; }
/// <summary>
/// 刷新令牌。
/// </summary>
public string RefreshToken { get; set; }
}
}