mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2026-01-26 12:16:36 +00:00
12 lines
349 B
C#
12 lines
349 B
C#
// <copyright file="ProfileLineEventArgs.cs" company="Adrian Conlon">
|
|
// Copyright (c) Adrian Conlon. All rights reserved.
|
|
// </copyright>
|
|
namespace MC6809
|
|
{
|
|
public class ProfileLineEventArgs(string source, ulong cycles) : EventArgs
|
|
{
|
|
public string Source { get; } = source;
|
|
|
|
public ulong Cycles { get; } = cycles;
|
|
}
|
|
} |