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

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;
}
}