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

@@ -273,8 +273,8 @@ namespace Umbraco.Tests.Published
public override int TemplateId { get; }
public override int SortOrder { get; }
public override string Name { get; }
public override PublishedCultureInfos GetCulture(string culture = ".") => throw new NotSupportedException();
public override IReadOnlyDictionary<string, PublishedCultureInfos> Cultures => throw new NotSupportedException();
public override PublishedCultureInfo GetCulture(string culture = ".") => throw new NotSupportedException();
public override IReadOnlyDictionary<string, PublishedCultureInfo> Cultures => throw new NotSupportedException();
public override string UrlSegment { get; }
public override string WriterName { get; }
public override string CreatorName { get; }