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

10 lines
214 B
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
using System.Collections.Generic;
namespace Hncore.Wx.Open
{
public class CreateQrcodeResponse : ResponseBase
{
public string ticket { get; set; }
public string url { get; set; }
}
}