mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 16:28:50 -07:00
13 lines
316 B
C#
13 lines
316 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
[XmlRoot(ElementName = "URGR", Namespace = "")]
|
|
[Serializable]
|
|
public class UserRoomGetRequest {
|
|
[XmlElement(ElementName = "UID")]
|
|
public Guid? UserID { get; set; }
|
|
|
|
[XmlElement(ElementName = "CID")]
|
|
public int? CategoryID { get; set; }
|
|
}
|