Files
juipnet/Services/Hncore.Pass.BaseInfo/Request/Manager/AgainTokenDTO.cs
“wanyongkang” b562aba2b1 忽略dll文件git
2023-07-29 10:19:42 +08:00

18 lines
420 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using Hncore.Pass.BaseInfo.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Hncore.Pass.BaseInfo.Request.Manager
{
public class AgainTokenDTO
{
public string Token { get; set; }
/// <summary>
/// 0刷新过期时间1刷新管理项目
/// </summary>
public AgainTokenType Type { get; set; }
}
}