using System;
namespace VersOne.Epub.Environment
{
///
/// Represents a ZIP archive file.
///
public interface IZipFile : IDisposable
{
///
/// Gets a value indicating whether this file was disposed or not.
///
bool IsDisposed { get; }
///
/// Retrieves a wrapper for the specified entry in the ZIP archive.
///
/// A path, relative to the root of the archive, that identifies the entry to retrieve.
/// A wrapper for the specified entry in the archive or null if the entry does not exist in the archive.
IZipFileEntry? GetEntry(string entryName);
}
}