You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
338 B
C#
18 lines
338 B
C#
namespace DS.WMS.Core.System.Dtos;
|
|
|
|
|
|
/// <summary>
|
|
/// 刷新token 返回
|
|
/// </summary>
|
|
public class RefreshTokenRes
|
|
{
|
|
/// <summary>
|
|
/// 令牌Token
|
|
/// </summary>
|
|
public string AccessToken { get; set; }= "";
|
|
|
|
/// <summary>
|
|
/// 刷新Token
|
|
/// </summary>
|
|
public string RefreshToken { get; set; }= "";
|
|
} |