21 lines
404 B
C#
21 lines
404 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Model
|
|||
|
{
|
|||
|
public class TokenItem
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// token
|
|||
|
/// </summary>
|
|||
|
public string Token { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 失效时间
|
|||
|
/// </summary>
|
|||
|
public string ExpiryTime { get; set; }
|
|||
|
}
|
|||
|
}
|