mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-07-25 02:02:17 +00:00
17 lines
438 B
C#
17 lines
438 B
C#
namespace SabreTools.Models.NCF
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/NCFFile.h"/>
|
|
public sealed class ChecksumMapEntry
|
|
{
|
|
/// <summary>
|
|
/// Number of checksums.
|
|
/// </summary>
|
|
public uint ChecksumCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// Index of first checksum.
|
|
/// </summary>
|
|
public uint FirstChecksumIndex { get; set; }
|
|
}
|
|
}
|