| 123456789101112131415161718192021222324252627282930313233343536 |
- 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<Menu> Children { get; set; }
- }
- public class AlainMenu
- {
- public int Id { get; set; }
- public string Text { get; set; }
- public string Link { get; set; }
- public AlainIcon Icon { get; set; }
- public bool ShortcutRoot { get; set; }
- public string Target { get; set; }
- public IEnumerable<AlainMenu> Children { get; set; }
- }
- public class AlainIcon
- {
- public string Type { get; set; } = "icon";
- public string Value { get; set; } = "appstore";
- }
- }
|