mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-21 21:59:47 +00:00
27 lines
743 B
C#
27 lines
743 B
C#
namespace SabreTools.Data.Models.ZArchive
|
|
{
|
|
/// <summary>
|
|
/// Node in the FileTree representing a directory
|
|
/// </summary>
|
|
/// <see href="https://github.com/Exzap/ZArchive/"/>
|
|
public sealed class DirectoryEntry : FileDirectoryEntry
|
|
{
|
|
/// <summary>
|
|
/// Starting index of the directory node
|
|
/// </summary>
|
|
/// <remarks>Big-endian</remarks>
|
|
public uint NodeStartIndex { get; set; }
|
|
|
|
/// <summary>
|
|
/// Number of
|
|
/// </summary>
|
|
/// <remarks>Big-endian</remarks>
|
|
public uint Count { get; set; }
|
|
|
|
/// <summary>
|
|
/// Reserved field
|
|
/// </summary>
|
|
public uint Reserved { get; set; }
|
|
}
|
|
}
|