Files
EightBitNet/MC6809/ProfileEventArgs.cs
2019-05-07 00:46:30 +01:00

11 lines
213 B
C#

namespace EightBit
{
using System;
public class ProfileEventArgs : EventArgs
{
public ProfileEventArgs(string output) => this.Output = output;
public string Output { get; }
}
}