namespace SabreTools.Data.Models.PKZIP
{
///
/// The unix modified time, last access time, and creation time, if set
///
/// Header ID = 0x5455
///
public class ExtendedTimestampExtraField : ExtensibleDataField
{
///
/// Indicates what tiemstamps are included
///
public RecordedTimeFlag Flags { get; set; }
///
/// Last modified time
///
/// Only available when is set
public uint? LastModified { get; set; }
///
/// Last accessed time
///
/// Only available when is set
public uint? LastAccessed { get; set; }
///
/// Created on time
///
/// Only available when is set
public uint? CreatedOn { get; set; }
}
}