mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-07-23 01:02:14 +00:00
15 lines
317 B
C#
15 lines
317 B
C#
namespace SabreTools.Models.SGA
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/SGAFile.h"/>
|
|
public sealed class FileHeader
|
|
{
|
|
#if NET48
|
|
public string Name { get; set; }
|
|
#else
|
|
public string? Name { get; set; }
|
|
#endif
|
|
|
|
public uint CRC32 { get; set; }
|
|
}
|
|
}
|