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

8 lines
208 B
C#

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