2023-10-31 11:47:27 -04:00

11 lines
279 B
C#
Executable File

namespace dotless.Core.Cache
{
using System.Collections.Generic;
public interface ICache
{
void Insert(string cacheKey, IEnumerable<string> fileDependancies, string css);
bool Exists(string cacheKey);
string Retrieve(string cacheKey);
}
}