mirror of
https://github.com/BlossomiShymae/Needlework.Net.git
synced 2025-12-06 10:10:48 +01:00
10 lines
174 B
C#
10 lines
174 B
C#
using System;
|
|
|
|
namespace Needlework.Net.Desktop
|
|
{
|
|
public class TextUpdatedEventArgs(string text) : EventArgs
|
|
{
|
|
public string Text { get; } = text;
|
|
}
|
|
}
|