Removes the AdditionalData properties for EntitySlim and moves them to real properties of IDocumentEntitySlim, renames PublishedCultureInfos to not be plural

This commit is contained in:
Shannon
2018-05-08 12:43:07 +10:00
parent 85c739aed4
commit ee9f150483
18 changed files with 49 additions and 64 deletions

View File

@@ -154,9 +154,9 @@ namespace Umbraco.Web.PublishedCache.XmlPublishedCache
public override string Name => _name;
public override PublishedCultureInfos GetCulture(string culture = null) => throw new NotSupportedException();
public override PublishedCultureInfo GetCulture(string culture = null) => throw new NotSupportedException();
public override IReadOnlyDictionary<string, PublishedCultureInfos> Cultures => throw new NotSupportedException();
public override IReadOnlyDictionary<string, PublishedCultureInfo> Cultures => throw new NotSupportedException();
public override string UrlSegment => _urlName;