using System;
namespace Packaging.Targets.IO
{
///
/// A common interface for the header of a file entry in an archive file.
///
public interface IArchiveHeader
{
///
/// Gets the file mode.
///
LinuxFileMode FileMode { get; }
///
/// Gets the date at which the file was last modified.
///
DateTimeOffset LastModified { get; }
///
/// Gets the size of the file.
///
uint FileSize { get; }
}
}