namespace Learun.Application.WeChat.WeChat
{
///
/// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
/// Copyright (c) 2013-2017
/// 创 建:超级管理员
/// 日 期:2017-09-22 12:01
/// 描 述:微信获取access_token返回类
///
public class Access_TokenEntity
{
///
/// 错误码
///
public int errcode { get; set; }
///
/// 错误内容
///
public string errmsg { get; set; }
///
/// token
///
public string access_token { get; set; }
///
/// 有效时长
///
public int expires_in { get; set; }
}
}