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

@@ -100,10 +100,10 @@ namespace Umbraco.Core.Models.PublishedContent
public virtual string GetUrl(string culture = null) => _content.GetUrl(culture);
/// <inheritdoc />
public PublishedCultureInfos GetCulture(string culture = null) => _content.GetCulture(culture);
public PublishedCultureInfo GetCulture(string culture = null) => _content.GetCulture(culture);
/// <inheritdoc />
public IReadOnlyDictionary<string, PublishedCultureInfos> Cultures => _content.Cultures;
public IReadOnlyDictionary<string, PublishedCultureInfo> Cultures => _content.Cultures;
/// <inheritdoc />
public virtual PublishedItemType ItemType => _content.ItemType;