MosswartMassacre/Unused/Decal.Adapter/TextBoxChangeEventArgs.cs
2025-06-09 02:03:11 +02:00

14 lines
231 B
C#

namespace Decal.Adapter;
public class TextBoxChangeEventArgs : ControlEventArgs
{
private string text;
public string Text => text;
internal TextBoxChangeEventArgs(int ID, string text)
: base(ID)
{
this.text = text;
}
}