mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-12 00:38:48 -07:00
21 lines
470 B
C#
21 lines
470 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "IRO", Namespace = "")]
|
|
[Serializable]
|
|
public class ItemDataRollover {
|
|
public ItemDataRollover() { }
|
|
|
|
public ItemDataRollover(ItemDataRollover other) {
|
|
DialogName = other.DialogName;
|
|
Bundle = other.Bundle;
|
|
}
|
|
|
|
[XmlElement(ElementName = "d")]
|
|
public string DialogName;
|
|
|
|
[XmlElement(ElementName = "b")]
|
|
public string Bundle;
|
|
}
|