1234567891011121314151617 |
- 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<MenuView> Childrens;
- }
- }
|