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

8 lines
258 B
C#

namespace EightBit.Files.Symbols
{
[AttributeUsage(AttributeTargets.Property)]
internal sealed class SectionReferenceAttribute(string key, bool optional = false) : SectionPropertyAttribute(key, type: typeof(int), optional: optional)
{
}
}