mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-07-20 07:55:49 +00:00
21 lines
457 B
C#
21 lines
457 B
C#
using System.IO;
|
|
|
|
namespace SharpCompress.Common.Zip
|
|
{
|
|
public class ZipVolume : GenericVolume
|
|
{
|
|
public ZipVolume(Stream stream, Options options)
|
|
: base(stream, options)
|
|
{
|
|
}
|
|
|
|
#if !PORTABLE && !NETFX_CORE
|
|
public ZipVolume(FileInfo fileInfo, Options options)
|
|
: base(fileInfo, options)
|
|
{
|
|
}
|
|
#endif
|
|
|
|
public string Comment { get; internal set; }
|
|
}
|
|
} |