mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-08-07 20:25:28 +00:00
15 lines
277 B
C#
15 lines
277 B
C#
namespace EightBit
|
|
{
|
|
public class ProfileEventArgs(string output) : EventArgs
|
|
{
|
|
private readonly string output = output;
|
|
|
|
public string Output
|
|
{
|
|
get
|
|
{
|
|
return this.output;
|
|
}
|
|
}
|
|
}
|
|
} |