Files
EightBitNet/M6502/M6502.Symbols/SectionAttribute.cs
2024-10-09 19:48:33 +01:00

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;
}
}