Files
Umbraco-CMS/src/umbraco.interfaces/IProperty.cs

11 lines
160 B
C#
Raw Normal View History

2012-08-10 13:11:37 +06:00
using System;
namespace umbraco.interfaces
{
public interface IProperty
{
string Alias { get; }
string Value { get; }
string ToString();
}
}