using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace Pcb.Domain
|
{
|
public class WxAppMenuSearch
|
{
|
public string Title { get; set; }
|
|
public int? ParentId { get; set; }
|
|
public string MenuKey { get; set; }
|
|
public int WeChatId { get; set; }
|
public int WxQyAppId { get; set; }
|
}
|
}
|