U4-7038 - IPublishedContentWithKey for contents, members
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
|
||||
namespace Umbraco.Core.Models.PublishedContent
|
||||
{
|
||||
public abstract class PublishedContentWithKeyModel : PublishedContentModel, IPublishedContentWithKey
|
||||
{
|
||||
protected PublishedContentWithKeyModel(IPublishedContentWithKey content)
|
||||
: base (content)
|
||||
{ }
|
||||
|
||||
public Guid Key { get { return ((IPublishedContentWithKey) Content).Key; } }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user