Blog.Core/Blog.Core.Model/ViewModels/WeChatMenuButtonDto.cs
hudingwen 98068d795c 添加动态linq查询
添加微信管理
2021-10-08 15:32:43 +08:00

19 lines
483 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Blog.Core.Model.ViewModels
{
/// <summary>
/// 获取微信菜单DTO,用于存放具体菜单内容
/// </summary>
public class WeChatMenuButtonDto
{
public string type { get; set; }
public string name { get; set; }
public string key { get; set; }
public string url { get; set; }
public WeChatMenuButtonDto[] sub_button { get; set; }
}
}