Files
sharpcompress/SharpCompress/IEntry.cs
2013-05-04 16:58:50 +01:00

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;
}
}
}