Files
juipnet/Infrastructure/WxApi/Request/GetAuthenticationUrlRequest.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

15 lines
429 B
C#

namespace Etor.Wx.Open
{
/// <summary>
/// 获取公众号授权连接的URL
/// </summary>
public class GetAuthenticationUrlRequest
{
public string component_appid { get; set; }
/// <summary>
/// 从<see cref="GetPreAuthCodeRequest"/>来
/// </summary>
public string pre_auth_code { get; set; }
public string redirect_uri { get; set; }
}
}