namespace SabreTools.Data.Models.WIA
{
///
/// WIA group entry pointing to compressed data for one group. Size: 0x08 bytes.
/// DataOffset is stored on-disk as the actual byte offset shifted right by 2 (i.e. >>2).
///
public sealed class WiaGroupEntry
{
///
/// Actual byte offset of this group's data within the WIA file.
///
/// Big-endian, requires left bit shift of 2 to get the real value
public uint DataOffset { get; set; }
///
/// Compressed size of this group's data in bytes (0 means group contains only zeroes)
///
/// Big-endian
public uint DataSize { get; set; }
}
}