mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-11-03 16:16:45 +00:00
11 lines
261 B
C#
11 lines
261 B
C#
namespace EightBit
|
|
{
|
|
public class ProfileScopeEventArgs(string scope, int cycles, int count) : EventArgs
|
|
{
|
|
public string Scope { get; } = scope;
|
|
|
|
public int Cycles { get; } = cycles;
|
|
|
|
public int Count { get; } = count;
|
|
}
|
|
} |