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; }
|
|
}
|
|
} |