Files
EightBitNet/M6502/M6502.Symbols/SectionEnumerationAttribute.cs
T
2024-10-07 19:34:48 +01:00

8 lines
217 B
C#

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