mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-07-21 16:24:23 +00:00
13 lines
315 B
C#
13 lines
315 B
C#
namespace SabreTools.Models.SGA
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/SGAFile.h"/>
|
|
public abstract class Header
|
|
{
|
|
public string? Signature { get; set; }
|
|
|
|
public ushort MajorVersion { get; set; }
|
|
|
|
public ushort MinorVersion { get; set; }
|
|
}
|
|
}
|