forked from SoDOff-Project/sodoff
15 lines
365 B
C#
15 lines
365 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "CPR", Namespace = "")]
|
|
[Serializable]
|
|
public class CreatePetResponse
|
|
{
|
|
[XmlElement(ElementName = "rpd")]
|
|
public RaisedPetData RaisedPetData { get; set; }
|
|
|
|
[XmlElement(ElementName = "cir")]
|
|
public CommonInventoryResponse UserCommonInventoryResponse { get; set; }
|
|
}
|