11 lines
160 B
C#
11 lines
160 B
C#
using System;
|
|
|
|
namespace umbraco.interfaces
|
|
{
|
|
public interface IProperty
|
|
{
|
|
string Alias { get; }
|
|
string Value { get; }
|
|
string ToString();
|
|
}
|
|
} |