mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 16:28:50 -07:00
21 lines
439 B
C#
21 lines
439 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "ImageDataDecal", Namespace = "")]
|
|
[Serializable]
|
|
public class ImageDataDecal
|
|
{
|
|
[XmlElement(ElementName = "Name")]
|
|
public string Name;
|
|
|
|
[XmlElement(ElementName = "Position")]
|
|
public ImageDataDecalPosition Position;
|
|
|
|
[XmlElement(ElementName = "Width")]
|
|
public int Width;
|
|
|
|
[XmlElement(ElementName = "Height")]
|
|
public int Height;
|
|
}
|