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

14 lines
407 B
C#

// <copyright file="ProfileScopeEventArgs.cs" company="Adrian Conlon">
// Copyright (c) Adrian Conlon. All rights reserved.
// </copyright>
namespace MC6809
{
public class ProfileScopeEventArgs(string scope, ulong cycles, ulong count) : EventArgs
{
public string Scope { get; } = scope;
public ulong Cycles { get; } = cycles;
public ulong Count { get; } = count;
}
}