mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 08:18:49 -07:00
16 lines
286 B
C#
16 lines
286 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
public enum GroupJoinRequestStatus {
|
|
[XmlEnum("1")]
|
|
Pending = 1,
|
|
[XmlEnum("2")]
|
|
Approved,
|
|
[XmlEnum("3")]
|
|
Rejected,
|
|
[XmlEnum("4")]
|
|
Cancelled,
|
|
[XmlEnum("5")]
|
|
PendingAccountOwnerRequest
|
|
} |