2024-09-24 21:40:43 +01:00

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; }
}
}
}
}