mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-08-14 20:27:21 +00:00
11 lines
213 B
C#
11 lines
213 B
C#
namespace EightBit
|
|
{
|
|
using System;
|
|
|
|
public class ProfileEventArgs : EventArgs
|
|
{
|
|
public ProfileEventArgs(string output) => this.Output = output;
|
|
|
|
public string Output { get; }
|
|
}
|
|
} |