24 lines
450 B
C#
24 lines
450 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace videoGather
|
|
{
|
|
|
|
//福乐云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; }
|
|
}
|
|
|
|
}
|