Files
Umbraco-CMS/src/Umbraco.Web/PublishedCache/IDomainCache.cs
2018-04-27 17:54:49 +02:00

13 lines
329 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);
string DefaultCulture { get; }
}
}