12 lines
233 B
C#
12 lines
233 B
C#
namespace Decal.Adapter;
|
|
|
|
public class StatusTextInterceptEventArgs : EatableEventArgs
|
|
{
|
|
public string Text { get; protected set; }
|
|
|
|
internal StatusTextInterceptEventArgs(string text, bool eat)
|
|
: base(eat)
|
|
{
|
|
Text = text;
|
|
}
|
|
}
|