mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-12 00:38:48 -07:00

- bugfix DT rewards: - fix selling from reward screen - fix showing in inventory without reload - add InventoryService.SellInventoryItem - add AchievementService.GetUserCurrency function
11 lines
295 B
C#
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; }
|
|
}
|