mirror of
https://github.com/Gericom/EveryFileExplorer.git
synced 2025-06-19 01:15:36 -04:00
13 lines
207 B
C#
13 lines
207 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace LibEveryFileExplorer.Compression
|
|
{
|
|
public interface ICompressable
|
|
{
|
|
byte[] Compress(byte[] Data);
|
|
}
|
|
}
|