mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-09-20 18:48:10 +08:00
chore: 升级示例项目为基于 .NET 6.0 的实现
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user