mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 16:28:50 -07:00
19 lines
429 B
C#
19 lines
429 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[Serializable]
|
|
public class SetNextItemStateResult {
|
|
[XmlElement(ElementName = "EC")]
|
|
public ItemStateChangeError ErrorCode { get; set; }
|
|
|
|
[XmlElement(ElementName = "UIS")]
|
|
public UserItemState UserItemState;
|
|
|
|
[XmlElement(ElementName = "RS")]
|
|
public AchievementReward[] Rewards;
|
|
|
|
[XmlElement(ElementName = "S")]
|
|
public bool Success;
|
|
}
|