using System;
using System.Collections.Generic;
using System.Text;
namespace Model.ModelDto.SysDto
{
///
/// ει
ζιDto
///
public class MenuDto
{
public int Id;
public string ParentId;
public string Title;
public bool @checked;
public bool Expand;
public string MenuNo;
public List children { get; set; }
}
}