namespace Inspectron.Fastbuffer.Interfaces; public interface IFilesystem:IDisposable { public void Write(string path, byte[] data); public byte[] Read(string path); public void Delete(string path); }