mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-14 05:25:41 +00:00
20 lines
543 B
C#
20 lines
543 B
C#
using System;
|
|
|
|
namespace SharpCompress.Common
|
|
{
|
|
public interface IEntry
|
|
{
|
|
CompressionType CompressionType { get; }
|
|
DateTime? ArchivedTime { get; }
|
|
long CompressedSize { get; }
|
|
uint Crc { get; }
|
|
DateTime? CreatedTime { get; }
|
|
string Key { get; }
|
|
bool IsDirectory { get; }
|
|
bool IsEncrypted { get; }
|
|
bool IsSplit { get; }
|
|
DateTime? LastAccessedTime { get; }
|
|
DateTime? LastModifiedTime { get; }
|
|
long Size { get; }
|
|
}
|
|
} |