mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-01-08 16:31:38 +00:00
7 lines
153 B
C#
7 lines
153 B
C#
namespace EightBit
|
|
{
|
|
public sealed class ProfileEventArgs(string output) : EventArgs
|
|
{
|
|
public string Output { get; } = output;
|
|
}
|
|
} |