mirror of
https://github.com/quamotion/dotnet-packaging.git
synced 2026-02-15 13:46:36 +00:00
26 lines
603 B
C#
26 lines
603 B
C#
using System;
|
|
|
|
namespace Packaging.Targets.IO
|
|
{
|
|
/// <summary>
|
|
/// A common interface for the header of a file entry in an archive file.
|
|
/// </summary>
|
|
public interface IArchiveHeader
|
|
{
|
|
/// <summary>
|
|
/// Gets the file mode.
|
|
/// </summary>
|
|
LinuxFileMode FileMode { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the date at which the file was last modified.
|
|
/// </summary>
|
|
DateTimeOffset LastModified { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the size of the file.
|
|
/// </summary>
|
|
uint FileSize { get; }
|
|
}
|
|
}
|