mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2026-03-11 05:41:49 +00:00
11 lines
311 B
C#
11 lines
311 B
C#
namespace M6502.Symbols
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
internal sealed class SectionAttribute(string key, string? referencing = null) : Attribute
|
|
{
|
|
public string Key { get; private set; } = key;
|
|
|
|
public string? Referencing { get; private set; } = referencing;
|
|
}
|
|
}
|