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