12 lines
290 B
C#
12 lines
290 B
C#
using System.Collections.Generic;
|
|
using Umbraco.Web.Routing;
|
|
|
|
namespace Umbraco.Web.PublishedCache
|
|
{
|
|
public interface IDomainCache
|
|
{
|
|
IEnumerable<Domain> GetAll(bool includeWildcards);
|
|
IEnumerable<Domain> GetAssigned(int contentId, bool includeWildcards);
|
|
}
|
|
}
|