LANCommander/LANCommander.SDK/Clients/IArchiveClient.cs
2025-12-13 00:26:43 -06:00

11 lines
No EOL
261 B
C#

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