mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 08:18:49 -07:00
17 lines
441 B
C#
17 lines
441 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "EditGroupResult", IsNullable = true)]
|
|
[Serializable]
|
|
public class EditGroupResult {
|
|
[XmlElement(ElementName = "Success")]
|
|
public bool Success;
|
|
|
|
[XmlElement(ElementName = "Status")]
|
|
public EditGroupStatus Status;
|
|
|
|
[XmlElement(ElementName = "NewRolePermissions", IsNullable = true)]
|
|
public List<RolePermission> NewRolePermissions;
|
|
}
|