mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 16:28:50 -07:00
20 lines
467 B
C#
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;
|
|
}
|