jumpstart-games-reduxed/src/Schema/ItemActionTypeMap.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

20 lines
542 B
C#

using System.Xml.Serialization;
namespace sodoff.Schema;
[XmlRoot(ElementName = "IATM", IsNullable = true)]
[Serializable]
public class ItemActionTypeMap {
[XmlElement(ElementName = "ID", IsNullable = false)]
public int ID { get; set; }
[XmlElement(ElementName = "IM", IsNullable = false)]
public int InventoryMax { get; set; }
[XmlElement(ElementName = "IU", IsNullable = false)]
public int ItemUses { get; set; }
[XmlElement(ElementName = "ACT", IsNullable = false)]
public ActionType Action { get; set; }
}