using System.Collections.Generic; using Umbraco.Web.Routing; namespace Umbraco.Web.PublishedCache { public interface IDomainCache { IEnumerable GetAll(bool includeWildcards); IEnumerable GetAssigned(int contentId, bool includeWildcards); } }