mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-12 00:38:48 -07:00
20 lines
486 B
C#
20 lines
486 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "UIPSRS", Namespace = "")]
|
|
[Serializable]
|
|
public class UserItemPositionSetResponse {
|
|
[XmlElement(ElementName = "s")]
|
|
public bool Success;
|
|
|
|
[XmlElement(ElementName = "ids")]
|
|
public int[] CreatedUserItemPositionIDs;
|
|
|
|
[XmlElement(ElementName = "r")]
|
|
public ItemPositionValidationResult Result;
|
|
|
|
[XmlElement(ElementName = "uciis")]
|
|
public UserItemState[] UserItemStates;
|
|
}
|