using System;
using System.Collections.Generic;
using System.Text;
namespace DllUfpEntity.Dto
{
public class Menu
{
public int Id { get; set; }
public int Level { get; set; }
public string Title { get; set; }
public string Icon { get; set; }
public bool Selected { get; set; }
public string Url { get; set; }
public bool Open { get; set; }
public IEnumerable