| 123456789101112131415161718192021222324 |
- using System.Collections.Generic;
- using System.Xml.Serialization;
- namespace PaintDotNet.Base.SettingModel
- {
- /// <summary>
- /// 设置 - 模块管理
- /// </summary>
- [XmlRoot("ROOT")]
- public class ModuleConfigModel
- {
- [XmlArrayAttribute("Items")]
- public List<Item> items { get; set; }
- public class Item
- {
- [XmlElement("ParentId")]
- public int ParentId;
- [XmlElement("ChildIds")]
- public string ChildIds;
- }
- }
- }
|