mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-04-05 17:37:54 +08:00
21 lines
495 B
C#
21 lines
495 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.Api.Sample_Net5.Models
|
|
{
|
|
public class WechatAccessTokenEntity
|
|
{
|
|
public string AppId { get; set; } = string.Empty;
|
|
|
|
public string AccessToken { get; set; } = string.Empty;
|
|
|
|
public long ExpireTimestamp { get; set; }
|
|
|
|
public long UpdateTimestamp { get; set; }
|
|
|
|
public long CreateTimestamp { get; set; }
|
|
}
|
|
}
|