提交首页修改

This commit is contained in:
2022-12-20 17:45:42 +08:00
parent 12a490ab94
commit bb65f0d461
196 changed files with 81389 additions and 24 deletions
+20
View File
@@ -0,0 +1,20 @@
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; }
}
}