sodoff/src/Schema/LeaveGroupRequest.cs
Hipposgrumm c14dc2258c Clan System, please contact me if you have any questions.
Please only contact me if you're Clan System /j
2025-07-29 20:44:59 -06:00

20 lines
467 B
C#

using System.Xml.Serialization;
namespace sodoff.Schema;
[XmlRoot(ElementName = "LeaveGroupRequest", IsNullable = true)]
[Serializable]
public class LeaveGroupRequest {
[XmlElement(ElementName = "UserID")]
public string UserID;
[XmlElement(ElementName = "GroupID")]
public string GroupID;
[XmlElement(ElementName = "ProductGroupID")]
public int? ProductGroupID;
[XmlElement(ElementName = "ProductID")]
public int? ProductID;
}