using System.IO; namespace MediaBrowser.Model.IO { /// /// Interface IZipClient /// public interface IZipClient { /// /// Extracts all. /// /// The source file. /// The target path. /// if set to true [overwrite existing files]. void ExtractAll(string sourceFile, string targetPath, bool overwriteExistingFiles); /// /// Extracts all. /// /// The source. /// The target path. /// if set to true [overwrite existing files]. void ExtractAll(Stream source, string targetPath, bool overwriteExistingFiles); } }