Kavita/API/Interfaces/IArchiveService.cs

10 lines
243 B
C#

using System.IO.Compression;
namespace API.Interfaces
{
public interface IArchiveService
{
bool ArchiveNeedsFlattening(ZipArchive archive);
public void ExtractArchive(string archivePath, string extractPath);
}
}