U4-7038 - IPublishedContentWithKey for contents, members

This commit is contained in:
Stephan
2015-08-31 18:59:51 +02:00
parent 62afc06f56
commit 7848ea5ec0
16 changed files with 128 additions and 7 deletions

View File

@@ -0,0 +1,15 @@
using System;
using System.Diagnostics;
using Umbraco.Core.Models;
namespace Umbraco.Web.Models
{
/// <summary>
/// Provide an abstract base class for <c>IPublishedContent</c> implementations.
/// </summary>
[DebuggerDisplay("Content Id: {Id}, Name: {Name}")]
public abstract class PublishedContentWithKeyBase : PublishedContentBase, IPublishedContentWithKey
{
public abstract Guid Key { get; }
}
}