using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Serialization; namespace PaintDotNet.Base.SettingModel { [XmlRoot("ROOT")] public class LocationModel { [XmlArrayAttribute("Items")] public List items { get; set; } public class Item { [XmlElement("X")] public float x; [XmlElement("Y")] public float y; [XmlElement("Z")] public long z; } } }