pblbackend/DOAN.Common/Model/WxTokenResult.cs

14 lines
322 B
C#
Raw Normal View History

2024-09-23 09:14:22 +08:00
namespace DOAN.Common.Model
{
public class WxTokenResult
{
/// <summary>
/// 0、正常
/// </summary>
public int errcode { get; set; }
public string errmsg { get; set; }
public string access_token { get; set; }
public string ticket { get; set; }
}
}