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
320 B
C#
11 lines
320 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "CIRBI", Namespace = "")]
|
|
[Serializable]
|
|
public class CommonInventoryResponseRewardBinItem : CommonInventoryResponseItem {
|
|
[XmlElement(ElementName = "UISMID", IsNullable = false)]
|
|
public int UserItemStatsMapID { get; set; }
|
|
}
|