2015-08-31 18:59:51 +02:00
|
|
|
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; } }
|
2015-08-31 18:59:51 +02:00
|
|
|
}
|
|
|
|
|
}
|