mh_frame_sps/APT.Infrastructure.Core/Structs/WeixinToken.cs

15 lines
330 B
C#
Raw Permalink Normal View History

2026-04-07 13:47:52 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace APT.Infrastructure.Core
{
public class WeixinToken
{
public string access_token { get; set; }
public int expires_in { get; set; }
public string errcode { get; set; }
public string errmsg { get; set; }
}
}