old_flsystem/类库/Api.Framework/Cps/CpsToken.cs

24 lines
696 B
C#
Raw Permalink Normal View History

2022-09-20 03:10:29 +00:00
//=============================================================
// 创建人:千年老妖
// 本页代码,均为原创。对未经许可擅自使用者,本人保留追究其法律责任的权利。
//==============================================================
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Api.Framework.Cps
{
/// <summary>
/// CpsToken类
/// </summary>
internal class CpsToken
{
public string username { get; set; }
public string appid { get; set; }
public string appkey { get; set; }
public string access_token { get; set; }
}
}