mirror of
https://github.com/RPCS3/discord-bot.git
synced 2026-01-31 01:25:22 +01:00
12 lines
314 B
C#
12 lines
314 B
C#
using System.IO;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CompatApiClient.Compression
|
|
{
|
|
public interface ICompressor
|
|
{
|
|
string EncodingType { get; }
|
|
Task<long> CompressAsync(Stream source, Stream destination);
|
|
Task<long> DecompressAsync(Stream source, Stream destination);
|
|
}
|
|
} |