10 lines
No EOL
243 B
C#
10 lines
No EOL
243 B
C#
using System.IO.Compression;
|
|
|
|
namespace API.Interfaces
|
|
{
|
|
public interface IArchiveService
|
|
{
|
|
bool ArchiveNeedsFlattening(ZipArchive archive);
|
|
public void ExtractArchive(string archivePath, string extractPath);
|
|
}
|
|
} |