mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-14 21:23:38 +00:00
14 lines
287 B
C#
14 lines
287 B
C#
using System.IO;
|
|
|
|
namespace SharpCompress.Common.Zip
|
|
{
|
|
public class ZipVolume : Volume
|
|
{
|
|
public ZipVolume(Stream stream, Options options)
|
|
: base(stream, options)
|
|
{
|
|
}
|
|
|
|
public string Comment { get; internal set; }
|
|
}
|
|
} |