mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-09-26 00:42:13 +00:00
10 lines
205 B
C#
10 lines
205 B
C#
using Windows.Foundation;
|
|
using Windows.Storage.Streams;
|
|
|
|
namespace SharpCompress
|
|
{
|
|
public interface IReaderFactory
|
|
{
|
|
IAsyncOperation<IReader> Open(IInputStream stream);
|
|
}
|
|
} |