123456789101112131415161718192021222324252627 |
- using System.Xml.Serialization;
- using System.Collections.Generic;
- namespace SmartCoalApplication.Base.SettingModel
- {
- /// <summary>
- /// 自定义界面 - 快捷键
- /// </summary>
- [XmlRoot("ROOT")]
- public class ShortcutbarModel
- {
- [XmlArrayAttribute("Menus")]
- public List<Item> Menus { get; set; }
- public class Item
- {
- [XmlElement("Id")]
- public int Id { get; set; }
- [XmlElement("Name")]
- public string Name { get; set; }
- [XmlElement("Description")]
- public string Description { get; set; }
- }
- }
- }
|