Files
juipnet/Infrastructure/WxApi/Request/GetAuthenticationUrlRequest.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

15 lines
415 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; }
}
}