shgx_tz_mom/ZR.Common/Model/WxTokenResult.cs

14 lines
320 B
C#
Raw Normal View History

2023-07-19 07:29:49 +08:00
namespace ZR.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; }
}
}