mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-09-25 16:34:45 +00:00
19 lines
338 B
C#
19 lines
338 B
C#
using Windows.Storage.Streams;
|
|
|
|
namespace SharpCompress
|
|
{
|
|
public interface IReader
|
|
{
|
|
ArchiveType ArchiveType
|
|
{
|
|
get;
|
|
}
|
|
|
|
IEntry Entry
|
|
{
|
|
get;
|
|
}
|
|
void WriteEntryTo(IOutputStream writableStream);
|
|
bool MoveToNextEntry();
|
|
}
|
|
} |