Files
juipnet/Infrastructure/WxApi/Request/GetAuthenticationUrlRequest.cs

15 lines
429 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
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; }
}
}