forked from SoDOff-Project/sodoff
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;
|
|
}
|