mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-07-11 11:37:18 +00:00
15 lines
247 B
C#
15 lines
247 B
C#
|
|
using System.IO;
|
|||
|
|
|
|||
|
|
namespace SharpCompress.Common
|
|||
|
|
{
|
|||
|
|
public abstract class FilePart
|
|||
|
|
{
|
|||
|
|
internal abstract string FilePartName
|
|||
|
|
{
|
|||
|
|
get;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
internal abstract Stream GetStream();
|
|||
|
|
}
|
|||
|
|
}
|