Files
linux-packaging-mono/mcs/class/System.IO.Compression/SharpCompress/Common/Zip/ZipVolume.cs

14 lines
276 B
C#
Raw Normal View History

using System.IO;
namespace SharpCompress.Common.Zip
{
internal class ZipVolume : Volume
{
public ZipVolume(Stream stream, Options options)
: base(stream, options)
{
}
public string Comment { get; internal set; }
}
}