mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2026-03-11 05:41:49 +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;
|
|
}
|
|
} |