LANCommander/LANCommander.SDK/Services/IArchiveService.cs

11 lines
262 B
C#
Raw Permalink Normal View History

using System;
using System.Collections.Generic;
using System.IO.Compression;
using System.Threading.Tasks;
namespace LANCommander.SDK.Services;
public interface IArchiveService
{
public Task<IEnumerable<ZipArchiveEntry>> GetContentsAsync(Guid archiveId);
}