namespace Decal.Adapter; public class StatusTextInterceptEventArgs : EatableEventArgs { public string Text { get; protected set; } internal StatusTextInterceptEventArgs(string text, bool eat) : base(eat) { Text = text; } }