jellyfin/MediaBrowser.Model/IO/IZipClient.cs

17 lines
387 B
C#
Raw Normal View History

2020-02-03 19:49:27 -05:00
#pragma warning disable CS1591
using System.IO;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Model.IO
{
/// <summary>
/// Interface IZipClient.
2018-12-27 18:27:57 -05:00
/// </summary>
public interface IZipClient
{
void ExtractAllFromGz(Stream source, string targetPath, bool overwriteExistingFiles);
2020-08-31 16:20:19 -04:00
2018-12-27 18:27:57 -05:00
void ExtractFirstFileFromGz(Stream source, string targetPath, string defaultFileName);
}
}