ECGGather/1200gFtp/FlyHisTokenMsg.cs
2024-12-25 17:21:40 +08:00

24 lines
448 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _1200gFtp
{
//福乐云HIS的token信息结构
public class FlyHisTokenMsgModel
{
public int code { get; set; }
public dataInfo data { get; set; }
}
public class dataInfo
{
public string access_token { get; set; }
public string expires_in { get; set; }
}
}