mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-16 21:23:13 +00:00
12 lines
246 B
C#
12 lines
246 B
C#
using System.IO;
|
|
|
|
namespace SharpCompress.Common.SevenZip
|
|
{
|
|
public class SevenZipVolume : Volume
|
|
{
|
|
public SevenZipVolume(Stream stream, Options options)
|
|
: base(stream, options)
|
|
{
|
|
}
|
|
}
|
|
} |