using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ObjectModel.Config.HuaWei
{
///
/// 服务器使用的token令牌
///
public class AccessTokenServer
{
///
/// 令牌
///
public string access_token;
///
/// 过期时间
///
public int expires_in;
///
/// 过期的时间
///
public DateTime TimeOut;
}
}