mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-11-01 18:16:08 +00:00
13 lines
338 B
C#
13 lines
338 B
C#
namespace M6502.Symbols
|
|
{
|
|
//version major = 2, minor = 0
|
|
[Section("version")]
|
|
public sealed class Version(Parser container) : Section(container)
|
|
{
|
|
[SectionProperty("major")]
|
|
public int Major { get; private set; }
|
|
|
|
[SectionProperty("minor")]
|
|
public int Minor { get; private set; }
|
|
}
|
|
} |