mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 16:28:50 -07:00
11 lines
270 B
C#
11 lines
270 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
[XmlRoot(ElementName = "URR", Namespace = "")]
|
|
[Serializable]
|
|
public class UserRoomResponse {
|
|
// Token: 0x040037EB RID: 14315
|
|
[XmlElement(ElementName = "ur")]
|
|
public List<UserRoom> UserRoomList;
|
|
}
|