mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-01-23 23:30:07 +00:00
cd4af67177
Signed-off-by: Adrian Conlon <adrian.conlon@gmail.com>
14 lines
348 B
C#
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; }
|
|
}
|
|
} |