EightBitNet/M6502/M6502.Symbols/SectionReferenceAttribute.cs
2024-09-24 21:40:43 +01:00

14 lines
354 B
C#

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