using System;
|
using System.Collections.Generic;
|
using System.Text;
|
|
namespace WeiXinKfSDK.Request
|
{
|
public class CreateMenuRequest
|
{
|
public List<CreateMenuButton> button { get; set; }
|
}
|
|
public class CreateMenuButton
|
{
|
public string type { get; set; }
|
|
public string name { get; set; }
|
|
public string key { get; set; }
|
}
|
|
public class GzhCustomerSendRequest
|
{
|
public string touser { get; set; }
|
|
public string msgtype { get; set; }
|
|
public GzhCustomerSendRequestTxt text { get; set; }
|
|
public GzhCustomerSendRequestImage image { get; set; }
|
}
|
|
public class GzhCustomerSendRequestTxt
|
{
|
public string content { get; set; }
|
}
|
|
public class GzhCustomerSendRequestImage
|
{
|
public string media_id { get; set; }
|
}
|
|
public class UploadWxImgRequest
|
{
|
public string path { get; set; }
|
|
public string name { get; set; }
|
}
|
|
public class GetAuthCodeRequest
|
{
|
public string Code { get; set; }
|
|
public string State { get; set; }
|
}
|
|
public class GetRidRequest
|
{
|
public string Rid { get; set; }
|
}
|
|
|
public class SendTemplateMsgRequest
|
{
|
public string touser { get; set; }
|
|
public string template_id { get; set; }
|
|
public object data { get; set; }
|
|
}
|
|
}
|