aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/IO/IZipClient.cs
diff options
context:
space:
mode:
authorClaus Vium <cvium@users.noreply.github.com>2022-10-11 20:46:31 +0200
committerGitHub <noreply@github.com>2022-10-11 20:46:31 +0200
commita274f4a68814299036fd91e60b47880f5a51a9c6 (patch)
tree1626fd7da50abf0350ab1b644d6699bd39590dd6 /MediaBrowser.Model/IO/IZipClient.cs
parentd50c1b2d4bc0c85428671b288adef1b336da1156 (diff)
parentf789bc948152eeb845b9e5b681cee733a02709b4 (diff)
Merge pull request #7840 from adrez99/gzip
Diffstat (limited to 'MediaBrowser.Model/IO/IZipClient.cs')
-rw-r--r--MediaBrowser.Model/IO/IZipClient.cs16
1 files changed, 0 insertions, 16 deletions
diff --git a/MediaBrowser.Model/IO/IZipClient.cs b/MediaBrowser.Model/IO/IZipClient.cs
deleted file mode 100644
index 2448575d1..000000000
--- a/MediaBrowser.Model/IO/IZipClient.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-#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);
- }
-}