mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-14 21:23:38 +00:00
16 lines
307 B
C#
16 lines
307 B
C#
using System.IO;
|
|
|
|
namespace SharpCompress.Common
|
|
{
|
|
public abstract class FilePart
|
|
{
|
|
internal abstract string FilePartName
|
|
{
|
|
get;
|
|
}
|
|
|
|
internal abstract Stream GetCompressedStream();
|
|
internal abstract Stream GetRawStream();
|
|
}
|
|
}
|