mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2024-11-20 00:31:34 +00:00
c4d52512b2
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
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; }
|
|
}
|
|
} |