Files
SabreTools.Serialization/SabreTools.Data.Models/ZArchive/OffsetInfo.cs
Deterous 5bb8557555 ZArchive support (#75)
* ZArchive support

* Fix offset record format

* Simplfiy Extensions

* Delete unused writers and test data

* Rework reader

* Fix build
2026-04-02 02:18:47 -04:00

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; }
}
}