a4565da4a9
Also removes unused methods from ZipClient
17 lines
387 B
C#
17 lines
387 B
C#
#pragma warning disable CS1591
|
|
|
|
using System.IO;
|
|
|
|
namespace MediaBrowser.Model.IO
|
|
{
|
|
/// <summary>
|
|
/// Interface IZipClient.
|
|
/// </summary>
|
|
public interface IZipClient
|
|
{
|
|
void ExtractAllFromGz(Stream source, string targetPath, bool overwriteExistingFiles);
|
|
|
|
void ExtractFirstFileFromGz(Stream source, string targetPath, string defaultFileName);
|
|
}
|
|
}
|