liushijie
2025-03-19 000ec1e8f616586358149b1da14a36f63f6dc604
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using Newtonsoft.Json;
 
namespace LifePayment.Domain.Shared
{
    public class WxMiniTokenInfo
    {
        /// <summary>
        /// 获取到的凭证
        /// </summary>
        [JsonProperty("access_token")]
        public string AccessToken { get; set; }
 
        /// <summary>
        /// 凭证有效时间,单位:秒。目前是7200秒之内的值。
        /// </summary>
        [JsonProperty("expires_in")]
        public int ExpiresIn { get; set; }
    }
}