tijian_tieying/web/dccdc.Models/WeiXin/button.cs

19 lines
420 B
C#
Raw Normal View History

2025-02-20 12:14:39 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace dccdc.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; }
}
}