mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2026-03-11 05:41:49 +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;
|
|
}
|
|
}
|
|
}
|
|
} |