Merge pull request #946 from akoeplinger/fix-mono-parallel
[mono.git] / mcs / class / System.IO.Compression / SharpCompress / Archive / IWritableArchiveEntry.cs
1 using System.IO;
2
3 namespace SharpCompress.Archive
4 {
5     internal interface IWritableArchiveEntry
6     {
7         Stream Stream { get; }
8     }
9 }