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

14 lines
305 B
C#

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