Renaming IDocumentProperty to IPublishedContentProperty

This commit is contained in:
Morten@Thinkpad-X220
2012-10-03 08:12:04 -02:00
parent 58ee5b4d55
commit aa288877be
11 changed files with 27 additions and 27 deletions

View File

@@ -0,0 +1,11 @@
using System;
namespace Umbraco.Core.Models
{
public interface IPublishedContentProperty
{
string Alias { get; }
object Value { get; }
Guid Version { get; }
}
}