mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-07-13 20:46:47 +00:00
25 lines
616 B
C#
25 lines
616 B
C#
using System;
|
|
|
|
namespace SharpCompress.Common;
|
|
|
|
public interface IEntry
|
|
{
|
|
CompressionType CompressionType { get; }
|
|
DateTime? ArchivedTime { get; }
|
|
long CompressedSize { get; }
|
|
long Crc { get; }
|
|
DateTime? CreatedTime { get; }
|
|
string? Key { get; }
|
|
string? LinkTarget { get; }
|
|
bool IsDirectory { get; }
|
|
bool IsEncrypted { get; }
|
|
bool IsSplitAfter { get; }
|
|
bool IsSolid { get; }
|
|
int VolumeIndexFirst { get; }
|
|
int VolumeIndexLast { get; }
|
|
DateTime? LastAccessedTime { get; }
|
|
DateTime? LastModifiedTime { get; }
|
|
long Size { get; }
|
|
int? Attrib { get; }
|
|
}
|