mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-09-22 14:55:11 +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.
23 lines
714 B
C#
23 lines
714 B
C#
namespace SabreTools.Data.Models.PKZIP
|
|
{
|
|
/// <summary>
|
|
/// The following is the layout of the NTFS attributes
|
|
/// "extra" block. (Note: At this time the Mtime, Atime
|
|
/// and Ctime values MAY be used on any WIN32 system.)
|
|
/// </summary>
|
|
/// <remarks>Header ID = 0x000A</remarks>
|
|
/// <see href="https://pkware.cachefly.net/webdocs/casestudies/APPNOTE.TXT"/>
|
|
public class NTFSExtraField : ExtensibleDataField
|
|
{
|
|
/// <summary>
|
|
/// Reserved for future use
|
|
/// </summary>
|
|
public uint Reserved { get; set; }
|
|
|
|
/// <summary>
|
|
/// NTFS attribute tags
|
|
/// </summary>
|
|
public TagSizeVar[] TagSizeVars { get; set; } = [];
|
|
}
|
|
}
|