mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-08-14 20:27:21 +00:00
17 lines
393 B
C#
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) { }
|
|
}
|
|
}
|
|
}
|
|
} |