mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-21 21:59:47 +00:00
This change looks dramatic, but it's just separating out the already-split namespaces into separate top-level folders. In theory, every single one could be built into their own Nuget package. `SabreTools.Serialization` still builds the normal Nuget package that is used by all other projects and includes all namespaces.
25 lines
667 B
C#
25 lines
667 B
C#
namespace SabreTools.Data.Models.PKZIP
|
|
{
|
|
/// <summary>
|
|
/// Archive extra data record
|
|
/// </summary>
|
|
/// <see href="https://pkware.cachefly.net/webdocs/casestudies/APPNOTE.TXT"/>
|
|
public class ArchiveExtraDataRecord
|
|
{
|
|
/// <summary>
|
|
/// Archive extra data signature (0x08064B50)
|
|
/// </summary>
|
|
public uint Signature { get; set; }
|
|
|
|
/// <summary>
|
|
/// Extra field length
|
|
/// </summary>
|
|
public uint ExtraFieldLength { get; set; }
|
|
|
|
/// <summary>
|
|
/// Extra field data (variable size)
|
|
/// </summary>
|
|
public byte[] ExtraFieldData { get; set; } = [];
|
|
}
|
|
}
|