mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-09-24 16:05:27 +00:00
56 lines
933 B
C#
56 lines
933 B
C#
using System;
|
|
|
|
namespace SharpCompress
|
|
{
|
|
public interface IEntry
|
|
{
|
|
CompressionType CompressionType
|
|
{
|
|
get;
|
|
}
|
|
DateTimeOffset ArchivedTime
|
|
{
|
|
get;
|
|
}
|
|
long CompressedSize
|
|
{
|
|
get;
|
|
}
|
|
uint Crc
|
|
{
|
|
get;
|
|
}
|
|
DateTimeOffset CreatedTime
|
|
{
|
|
get;
|
|
}
|
|
string FilePath
|
|
{
|
|
get;
|
|
}
|
|
bool IsDirectory
|
|
{
|
|
get;
|
|
}
|
|
bool IsEncrypted
|
|
{
|
|
get;
|
|
}
|
|
bool IsSplit
|
|
{
|
|
get;
|
|
}
|
|
DateTimeOffset LastAccessedTime
|
|
{
|
|
get;
|
|
}
|
|
DateTimeOffset LastModifiedTime
|
|
{
|
|
get;
|
|
}
|
|
long Size
|
|
{
|
|
get;
|
|
}
|
|
}
|
|
} |