14 lines
322 B
C#
Raw Normal View History

2024-07-01 16:04:10 +08:00
namespace DOAN.Common.Model
2024-05-16 13:30:30 +08:00
{
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; }
}
}