mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-03-12 01:35:36 +00:00
33 lines
642 B
C#
33 lines
642 B
C#
namespace EightBit
|
|
{
|
|
public class ProfileScopeEventArgs(string scope, int cycles, int count) : EventArgs
|
|
{
|
|
private readonly string scope = scope;
|
|
private readonly int cycles = cycles;
|
|
private readonly int count = count;
|
|
|
|
public string Scope
|
|
{
|
|
get
|
|
{
|
|
return this.scope;
|
|
}
|
|
}
|
|
|
|
public int Cycles
|
|
{
|
|
get
|
|
{
|
|
return this.cycles;
|
|
}
|
|
}
|
|
|
|
public int Count
|
|
{
|
|
get
|
|
{
|
|
return this.count;
|
|
}
|
|
}
|
|
}
|
|
} |