init
This commit is contained in:
18
DouyinApi.Model/ViewModels/WeChatMenuButtonDto.cs
Normal file
18
DouyinApi.Model/ViewModels/WeChatMenuButtonDto.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace DouyinApi.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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user