mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 08:18:49 -07:00
21 lines
410 B
C#
21 lines
410 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "progress", Namespace = "")]
|
|
[Serializable]
|
|
public class GameProgress {
|
|
[XmlElement(ElementName = "name")]
|
|
public string Name;
|
|
|
|
[XmlElement(ElementName = "version")]
|
|
public string Version;
|
|
|
|
[XmlElement(ElementName = "chapter")]
|
|
public string[] Chapter;
|
|
|
|
[XmlElement(ElementName = "custom")]
|
|
public string? Custom;
|
|
}
|
|
|