using System; using System.Collections.Generic; using ShiroginSDK.Runtime.Modules.IAP.Scripts.Definitions; namespace ShiroginSDK.Runtime.Modules.Events { public static partial class ShiroginEvents { public static class Shop { [Serializable] public class Shop_UIStoreItem_Rewarded { public List EarnedRewards; public Shop_UIStoreItem_Rewarded(List earnedRewards) { EarnedRewards = earnedRewards; } } } } }