mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-05 22:01:33 +00:00
* ZArchive support * Fix offset record format * Simplfiy Extensions * Delete unused writers and test data * Rework reader * Fix build
20 lines
537 B
C#
20 lines
537 B
C#
namespace SabreTools.Data.Models.ZArchive
|
|
{
|
|
/// <summary>
|
|
/// Offset and size values of a ZArchive section, stored in the Footer
|
|
/// </summary>
|
|
/// <see href="https://github.com/Exzap/ZArchive/"/>
|
|
public class OffsetInfo
|
|
{
|
|
/// <summary>
|
|
/// Base offset value for the section in bytes
|
|
/// </summary>
|
|
public ulong Offset { get; set; }
|
|
|
|
/// <summary>
|
|
/// Total size of the section in bytes
|
|
/// </summary>
|
|
public ulong Size { get; set; }
|
|
}
|
|
}
|