EightBitNet/M6502/M6502.Symbols/SectionEnumerationAttribute.cs
2024-09-18 11:19:41 +01:00

14 lines
313 B
C#

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