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