Added IsPublished(culture) to IPublishedContent

This commit is contained in:
Bjarke Berg
2019-01-23 07:54:45 +01:00
parent 78319bae9e
commit e871392405
13 changed files with 63 additions and 13 deletions

View File

@@ -217,6 +217,7 @@ namespace Umbraco.Tests.PublishedContent
public Guid Version { get; set; }
public int Level { get; set; }
public bool IsDraft(string culture = null) => false;
public bool IsPublished(string culture = null) => true;
public IEnumerable<IPublishedProperty> Properties { get; set; }