Files
juipnet/Infrastructure/WxApi/Response/GetWechatTicketResponse.cs

10 lines
208 B
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
namespace Hncore.Wx.Open
{
/// <summary>
/// <see cref=" GetWechatTicketRequest"/>
/// </summary>
public class GetWechatTicketResponse:ResponseBase
{
public string Ticket { get; set; }
}
}