mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 16:28:50 -07:00
18 lines
390 B
C#
18 lines
390 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "ARM", IsNullable = true, Namespace = "")]
|
|
[Serializable]
|
|
public class RewardMultiplier
|
|
{
|
|
[XmlElement(ElementName = "PT")]
|
|
public int PointTypeID;
|
|
|
|
[XmlElement(ElementName = "MF")]
|
|
public int MultiplierFactor;
|
|
|
|
[XmlElement(ElementName = "MET")]
|
|
public DateTime MultiplierEffectTime;
|
|
}
|