using System.Threading; using System.Threading.Tasks; namespace Oqtane.Services { /// /// Service to manage cache /// public interface ICacheService { /// /// Evicts the output cache for a specific tag /// /// /// Task EvictOutputCacheByTag(string tag, CancellationToken cancellationToken = default); } }