Files
Umbraco-CMS/src/Umbraco.Core/Models/PublishedContent/PublishedContentWithKeyExtended.cs
T

15 lines
509 B
C#
Raw Normal View History

using System;
namespace Umbraco.Core.Models.PublishedContent
{
public class PublishedContentWithKeyExtended : PublishedContentExtended, IPublishedContentWithKey
{
// protected for models, internal for PublishedContentExtended static Extend method
protected internal PublishedContentWithKeyExtended(IPublishedContentWithKey content)
: base(content)
{ }
2017-06-04 16:22:43 +02:00
public Guid Key { get { return ((IPublishedContentWithKey) WrappedContentInternal).Key; } }
}
}