mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2026-03-11 05:41:49 +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; }
|
|
}
|
|
} |