mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 16:28:50 -07:00
18 lines
500 B
C#
18 lines
500 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "SetRaisedPetResponse", Namespace = "")]
|
|
[Serializable]
|
|
public class SetRaisedPetResponse
|
|
{
|
|
[XmlElement(ElementName = "ErrorMessage")]
|
|
public string ErrorMessage { get; set; }
|
|
|
|
[XmlElement(ElementName = "RaisedPetSetResult")]
|
|
public RaisedPetSetResult RaisedPetSetResult { get; set; }
|
|
|
|
[XmlElement(ElementName = "cir")]
|
|
public CommonInventoryResponse UserCommonInventoryResponse { get; set; }
|
|
}
|