sodoff/src/Schema/ProcessRewardedItemsRequest.cs
Robert Paciorek b5e76d1846 DT reward bugfix + GetUserCurrency function
- bugfix DT rewards:
  - fix selling from reward screen
  - fix showing in inventory without reload
- add InventoryService.SellInventoryItem
- add AchievementService.GetUserCurrency function
2023-09-02 12:38:18 +02:00

11 lines
295 B
C#

using System.Xml.Serialization;
namespace sodoff.Schema;
[XmlRoot(ElementName = "PRIREQ", IsNullable = true)]
[Serializable]
public class ProcessRewardedItemsRequest {
[XmlElement(ElementName = "IATM", IsNullable = false)]
public ItemActionTypeMap[] ItemsActionMap { get; set; }
}