Files
EightBitNet/M6502/M6502.Symbols/NamedSection.cs

17 lines
393 B
C#

namespace EightBit
{
namespace Files
{
namespace Symbols
{
public class NamedSection : IdentifiableSection
{
[SectionProperty("name")]
public string? Name => this.TakeString("name");
protected NamedSection(Parser container)
: base(container) { }
}
}
}
}