using System; using System.Collections.Generic; using System.Text; namespace YLShipBuildLandMap.Entity.ViewModel.SystemSetting { public class MenuView { public string MenuId { get; set; } public string Title { get; set; } public string Url { get; set; } public string Icon { get; set; } public int IsVisible { get; set; } public List Childrens; } }