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