namespace SabreTools.IO.Compression.RVZPack { /// /// File entry with start and end byte offsets on disc /// public struct FileEntry { /// /// Indicates if the entry respresents a directory /// public bool IsDirectory; /// /// Starting data offset for the entry /// public long FileStart; /// /// Ending data offset for the entry /// public long FileEnd; } }