forked from SoDOff-Project/sodoff

- add GetChildList method - add placeholder fields to respond in GetUserInfoByApiToken and GetUserProfile
11 lines
256 B
C#
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;
|
|
}
|