using System.Xml.Serialization; using System.Collections.Generic; namespace PaintDotNet.Base.SettingModel { /// /// 自定义界面 - 工具栏坐标 /// [XmlRoot("ROOT")] public class ToolbarLocationModel { [XmlArrayAttribute("Flows")] public List Flows { get; set; } public class Flow { [XmlElement("Key")] public string Key { get; set; } [XmlElement("X")] public int X { get; set; } [XmlElement("Y")] public int Y { get; set; } } } }