MenuView.cs 424 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace YLShipBuildLandMap.Entity.ViewModel.SystemSetting
  5. {
  6. public class MenuView
  7. {
  8. public string MenuId { get; set; }
  9. public string Title { get; set; }
  10. public string Url { get; set; }
  11. public string Icon { get; set; }
  12. public int IsVisible { get; set; }
  13. public List<MenuView> Childrens;
  14. }
  15. }