11 lines
279 B
C#
Executable File
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);
|
|
}
|
|
} |