rpaciorek 4c2dd92969
initial support for older clients, tested with 2.9 (#11)
- add GetChildList method
- add placeholder fields to respond in GetUserInfoByApiToken and GetUserProfile
2023-07-25 23:25:37 +02:00

11 lines
256 B
C#

using System.Xml.Serialization;
namespace sodoff.Schema;
[XmlRoot(ElementName = "ArrayOfString", Namespace = "http://api.jumpstart.com/")]
[Serializable]
public class ChildList {
[XmlElement(ElementName = "string")]
public string[] strings;
}