Files

20 lines
548 B
C#
Raw Permalink Normal View History

2013-04-07 10:58:58 +01:00
using System;
namespace SharpCompress.Common
{
public interface IEntry
{
2013-04-28 12:32:55 +01:00
CompressionType CompressionType { get; }
DateTime? ArchivedTime { get; }
long CompressedSize { get; }
uint Crc { get; }
DateTime? CreatedTime { get; }
string FilePath { get; }
bool IsDirectory { get; }
bool IsEncrypted { get; }
bool IsSplit { get; }
DateTime? LastAccessedTime { get; }
DateTime? LastModifiedTime { get; }
long Size { get; }
2013-04-07 10:58:58 +01:00
}
2013-04-28 12:32:55 +01:00
}