QiYeWeiXinGetTokenResult.cs
687 Bytes
using System;
using System.Collections.Generic;
using System.Text;
namespace HHECS.Infrastructure.QiYeWeiXin
{
/// <summary>
/// Token返回实体
/// </summary>
public class QiYeWeiXinGetTokenResult
{
/// <summary>
/// 错误编号
/// </summary>
public int errcode { get; set; }
/// <summary>
/// 错误信息
/// </summary>
public string errmsg { get; set; }
/// <summary>
/// Token
/// </summary>
public string access_token { get; set; }
/// <summary>
/// 过期时间
/// </summary>
public int expires_in { get; set; }
}
}