Files
EightBitNet/M6502/M6502.Symbols/SectionReferenceAttribute.cs

14 lines
304 B
C#

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