using API.Entities;
namespace API.Interfaces
{
public interface ICacheService
{
///
/// Ensures the cache is created for the given volume and if not, will create it.
///
///
void Ensure(int volumeId);
bool Cleanup(Volume volume);
//bool CleanupAll();
string GetCachePath(int volumeId);
}
}