17 lines
521 B
C#
17 lines
521 B
C#
namespace Etor.Wx.Open
|
|
{
|
|
/// <summary>
|
|
/// 获取第三方App的AccessToken
|
|
/// <see cref="GetPreAuthCodeRequest"/>使用
|
|
///
|
|
/// </summary>
|
|
public class GetComponentAccessTokenRequest
|
|
{
|
|
public string component_appid { get; set; }
|
|
public string component_appsecret { get; set; }
|
|
/// <summary>
|
|
/// <see cref="GetComponentVerifyTicketRequest"/>这个请求可以拿到
|
|
/// </summary>
|
|
public string component_verify_ticket { get; set; }
|
|
}
|
|
} |