11 lines
No EOL
261 B
C#
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);
|
|
} |