EightBitNet/MC6809/ProfileEventArgs.cs
Adrian Conlon cd4af67177 Work my way through a bunch of the analysis suggestions.
Signed-off-by: Adrian Conlon <adrian.conlon@gmail.com>
2020-06-22 00:00:15 +01:00

14 lines
348 B
C#

// <copyright file="ProfileEventArgs.cs" company="Adrian Conlon">
// Copyright (c) Adrian Conlon. All rights reserved.
// </copyright>
namespace EightBit
{
using System;
public class ProfileEventArgs : EventArgs
{
public ProfileEventArgs(string output) => this.Output = output;
public string Output { get; }
}
}