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

14 lines
311 B
C#

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