mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-12 08:38:49 -07:00
11 lines
256 B
C#
11 lines
256 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "UIPSR", Namespace = "")]
|
|
[Serializable]
|
|
public class UserItemPositionSetRequest : UserItemPosition {
|
|
[XmlElement(ElementName = "pix")]
|
|
public int? ParentIndex;
|
|
}
|