using System; namespace DominionBase.Cards { public class GetTextEventArgs : EventArgs { public string Text { get; } public GetTextEventArgs(string text) { Text = text; } } }