EightBitNet/MC6809/ProfileEventArgs.cs

11 lines
213 B
C#
Raw Normal View History

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