修改集团客户化内容

This commit is contained in:
2023-01-04 15:27:19 +08:00
parent bb7bdee235
commit 3fb8feb4f3
214 changed files with 84021 additions and 120 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; }
}
}