19 lines
414 B
C#
19 lines
414 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Web;
|
|||
|
|
|
|||
|
|
namespace Models.WeiXin
|
|||
|
|
{
|
|||
|
|
public class button
|
|||
|
|
{
|
|||
|
|
public string type { get; set; }
|
|||
|
|
public string name { get; set; }
|
|||
|
|
public string key { get; set; }
|
|||
|
|
|
|||
|
|
public string url { get; set; }
|
|||
|
|
public string media_id { get; set; }
|
|||
|
|
|
|||
|
|
public List<button> sub_button { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|