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

10 lines
214 B
C#
Raw Normal View History

2020-12-28 14:55:48 +08:00
using System.Collections.Generic;
namespace Hncore.Wx.Open
{
public class CreateQrcodeResponse : ResponseBase
{
public string ticket { get; set; }
public string url { get; set; }
}
2020-10-07 20:25:03 +08:00
}