54e5140d6a
that are on the DynamicPublishedContent object. Added more unit tests for all of these classes. Moved some of the Dynamic objects into the web project which simplifies things quite a bit as some of these classes require access to the biz logic layer. Now we have intellisense for all of the nice magical methods that were on DynamicPublishedContent on our strongly typed object!
11 lines
180 B
C#
11 lines
180 B
C#
using System;
|
|
|
|
namespace Umbraco.Core.Models
|
|
{
|
|
public interface IPublishedContentProperty
|
|
{
|
|
string Alias { get; }
|
|
object Value { get; }
|
|
Guid Version { get; }
|
|
}
|
|
} |