mh_sms/APT.MicroApi/APT.OP.WebApi/Models/WxModel.cs

38 lines
700 B
C#
Raw Permalink Normal View History

2024-04-12 16:50:28 +08:00
namespace APT.OP.WebApi.Models
{
public class WxAccessToken
{
public string access_token { get; set; }
public int expires_in { get; set; }
public int errcode { get; set; }
public string errmsg { get; set; }
}
public class WxTicket
{
public string ticket { get; set; }
public int expires_in { get; set; }
public int errcode { get; set; }
public string errmsg { get; set; }
}
public class WxSignModel
{
public string appId { get; set; }
public string timestamp { get; set; }
public string nonceStr { get; set; }
public string signature { get; set; }
}
}