using Newtonsoft.Json;
namespace LifePayment.Domain.Shared
{
public class WxMiniTokenInfo
{
///
/// 获取到的凭证
///
[JsonProperty("access_token")]
public string AccessToken { get; set; }
///
/// 凭证有效时间,单位:秒。目前是7200秒之内的值。
///
[JsonProperty("expires_in")]
public int ExpiresIn { get; set; }
}
}