LANCommander/LANCommander.SDK/Services/IArchiveService.cs
2025-09-06 12:57:15 -05:00

11 lines
No EOL
262 B
C#

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);
}