123456789101112131415161718192021222324252627 |
- using System.Xml.Serialization;
- using System.Collections.Generic;
- namespace PaintDotNet.Base.SettingModel
- {
- /// <summary>
- /// 自定义界面 - 工具栏坐标
- /// </summary>
- [XmlRoot("ROOT")]
- public class ToolbarLocationModel
- {
- [XmlArrayAttribute("Flows")]
- public List<Flow> 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; }
- }
- }
- }
|