12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Xml.Serialization;
- namespace SmartCoalApplication.Base.SettingModel
- {
- /// <summary>
- /// 自定义界面 - 快捷键
- /// </summary>
- [XmlRoot("ROOT")]
- public class HotkeyModel
- {
- [XmlArrayAttribute("Items")]
- public List<Item> items { get; set; }
- public class Item
- {
- [XmlElement("MenuId")]
- public int MenuId;
- [XmlElement("MenuName")]
- public string MenuName;
- [XmlElement("HotKeys")]
- public string HotKeys;
- [XmlElement("Description")]
- public string Description { get; set; }
- }
- }
- }
|