Files
Needlework.Net/Needlework.Net.Desktop/TextUpdatedEventArgs.cs
BlossomiShymae a8741cd352 WIP
2024-08-02 02:25:17 -05:00

10 lines
174 B
C#

using System;
namespace Needlework.Net.Desktop
{
public class TextUpdatedEventArgs(string text) : EventArgs
{
public string Text { get; } = text;
}
}