| 12345678910111213141516171819202122232425262728 |
- 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<Item> items { get; set; }
- public class Item
- {
- [XmlElement("X")]
- public float x;
- [XmlElement("Y")]
- public float y;
- [XmlElement("Z")]
- public long z;
- }
- }
- }
|