Files
archived-discord-bot/Clients/CompatApiClient/Compression/ICompressor.cs
13xforever 92751ba6e9 use file-scoped namespaces to reduce nesting
some formatting might be fucked
2022-06-30 00:59:46 +05:00

11 lines
288 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);
}