mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-01-23 07:30:46 +00:00
19 lines
483 B
C#
19 lines
483 B
C#
namespace EightBit
|
|
{
|
|
namespace Files
|
|
{
|
|
namespace 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; }
|
|
}
|
|
}
|
|
}
|
|
} |