IPublishedContent.UrlSegment

This commit is contained in:
Stephan
2018-04-28 16:35:33 +02:00
parent ce8775b3e7
commit 6959e595f5
16 changed files with 19 additions and 19 deletions

View File

@@ -44,7 +44,7 @@ namespace Umbraco.Core.Models.PublishedContent
/// this is the name for the 'current' culture.</para>
/// </remarks>
/// FIXME rename UrlSegment + culture aware
string UrlName { get; } // fixme rename, segment!
string UrlSegment { get; }
/// <summary>
/// Gets the sort order of the content item.

View File

@@ -61,7 +61,7 @@ namespace Umbraco.Core.Models.PublishedContent
public virtual string Name => _content.Name;
/// <inheritdoc />
public virtual string UrlName => _content.UrlName;
public virtual string UrlSegment => _content.UrlSegment;
/// <inheritdoc />
public virtual int SortOrder => _content.SortOrder;