9 lines
144 B
C#
9 lines
144 B
C#
|
using System.IO;
|
|||
|
|
|||
|
namespace SharpCompress.Archive
|
|||
|
{
|
|||
|
internal interface IWritableArchiveEntry
|
|||
|
{
|
|||
|
Stream Stream { get; }
|
|||
|
}
|
|||
|
}
|