mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-11-28 09:17:45 +00:00
11 lines
304 B
C#
11 lines
304 B
C#
namespace M6502.Symbols
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
internal class SectionAttribute(string key, string? referencing = null) : Attribute
|
|
{
|
|
public string Key { get; private set; } = key;
|
|
|
|
public string? Referencing { get; private set; } = referencing;
|
|
}
|
|
}
|