mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2026-01-26 12:16:36 +00:00
10 lines
279 B
C#
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;
|
|
}
|
|
} |