mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-14 13:35:38 +00:00
9 lines
152 B
C#
9 lines
152 B
C#
using System.IO;
|
|
|
|
namespace SharpCompress.Archive
|
|
{
|
|
internal interface IWritableArchiveEntry
|
|
{
|
|
Stream Stream { get; }
|
|
}
|
|
} |