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

8 lines
200 B
C#

namespace M6502.Symbols
{
[AttributeUsage(AttributeTargets.Property)]
internal sealed class SectionReferencesAttribute(string key) : SectionPropertyAttribute(key, many: true)
{
}
}