ModuleConfigModel.cs 524 B

123456789101112131415161718192021222324
  1. using System.Collections.Generic;
  2. using System.Xml.Serialization;
  3. namespace PaintDotNet.Base.SettingModel
  4. {
  5. /// <summary>
  6. /// 设置 - 模块管理
  7. /// </summary>
  8. [XmlRoot("ROOT")]
  9. public class ModuleConfigModel
  10. {
  11. [XmlArrayAttribute("Items")]
  12. public List<Item> items { get; set; }
  13. public class Item
  14. {
  15. [XmlElement("ParentId")]
  16. public int ParentId;
  17. [XmlElement("ChildIds")]
  18. public string ChildIds;
  19. }
  20. }
  21. }