mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-01-09 07:34:13 +00:00
7 lines
146 B
C#
7 lines
146 B
C#
namespace EightBit
|
|
{
|
|
public class ProfileEventArgs(string output) : EventArgs
|
|
{
|
|
public string Output { get; } = output;
|
|
}
|
|
} |