using System.IO;
namespace VersOne.Epub.Environment
{
///
/// Represents a compressed file within a ZIP archive.
///
public interface IZipFileEntry
{
///
/// Gets the uncompressed size of the entry in the ZIP archive.
///
long Length { get; }
///
/// Opens the entry from the ZIP archive.
///
/// The stream that represents the contents of the entry.
Stream Open();
}
}