mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 16:28:50 -07:00
22 lines
557 B
C#
22 lines
557 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "RegistrationResult", IsNullable = true)]
|
|
[Serializable]
|
|
public class RegistrationResult {
|
|
|
|
[XmlElement(ElementName = "ParentLoginInfo")]
|
|
public ParentLoginInfo ParentLoginInfo { get; set; }
|
|
|
|
[XmlElement(ElementName = "UserID")]
|
|
public string UserID { get; set; }
|
|
|
|
[XmlElement(ElementName = "Status")]
|
|
public MembershipUserStatus Status;
|
|
|
|
// Token: 0x04002BDB RID: 11227
|
|
[XmlElement(ElementName = "ApiToken")]
|
|
public string ApiToken;
|
|
}
|