123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- using System.Xml.Serialization;
- using System.Collections.Generic;
- namespace SmartCoalApplication.Base.SettingModel
- {
- /// <summary>
- /// 自定义界面 - 工具栏
- /// </summary>
- [XmlRoot("ROOT")]
- public class ToolbarModel
- {
- [XmlArrayAttribute("Flows")]
- public List<Flow> Flows { get; set; }
- public class Flow
- {
- [XmlElement("Key")]
- public string Key { get; set; }
- [XmlElement("Name")]
- public string Name { get; set; }
- [XmlElement("X")]
- public int X { get; set; }
- [XmlElement("Y")]
- public int Y { get; set; }
- [XmlElement("Show")]
- public bool Show { get; set; }
- [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; }
- }
- }
- }
- }
|