mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-21 14:30:33 -04:00
10 lines
243 B
C#
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);
|
|
}
|
|
} |