Files
EightBitNet/MC6809/ProfileEventArgs.cs
2025-05-12 21:08:39 +01:00

10 lines
279 B
C#

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