mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-09-25 00:15:15 +00:00
25 lines
615 B
C#
25 lines
615 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; }
|
|
}
|