mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2026-01-13 05:31:51 -08:00
17 lines
429 B
C#
17 lines
429 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "AssignRoleResult", IsNullable = true)]
|
|
[Serializable]
|
|
public class AssignRoleResult {
|
|
[XmlElement(ElementName = "Success")]
|
|
public bool Success;
|
|
|
|
[XmlElement(ElementName = "InitiatorNewRole", IsNullable = true)]
|
|
public UserRole? InitiatorNewRole;
|
|
|
|
[XmlElement(ElementName = "Status")]
|
|
public AssignRoleStatus Status;
|
|
}
|