namespace SabreTools.Data.Models.ZArchive
{
///
/// Offset and size values of a ZArchive section, stored in the Footer
///
///
public class OffsetInfo
{
///
/// Base offset value for the section in bytes
///
public ulong Offset { get; set; }
///
/// Total size of the section in bytes
///
public ulong Size { get; set; }
}
}