using System; namespace Azerion.BlueStack.API { public class RewardedItem : EventArgs { public double Amount { get; } public string Type { get; } public RewardedItem(double amount = 0, string type = "unknown") { this.Amount = amount; this.Type = type; } } }