mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-02-19 13:46:18 +00:00
11 lines
253 B
C#
11 lines
253 B
C#
namespace SabreTools.Models.SGA
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/SGAFile.h"/>
|
|
public sealed class FileHeader
|
|
{
|
|
public string? Name { get; set; }
|
|
|
|
public uint CRC32 { get; set; }
|
|
}
|
|
}
|