Files
Umbraco-CMS/src/umbraco.interfaces/IDataPrevalue.cs
T
2012-06-22 20:39:48 +04:00

22 lines
613 B
C#

using System;
namespace umbraco.interfaces
{
/// <summary>
/// The IDataPrevalue interface is part of the IDataType interface for creating new data types in the umbraco backoffice.
/// The IDataPrevalue represents the editing UI for adding prevalues to the datatype.
/// </summary>
public interface IDataPrevalue
{
/// <summary>
/// Saves this instance.
/// </summary>
void Save();
/// <summary>
/// Gets the editor control.
/// </summary>
/// <value>The editor.</value>
System.Web.UI.Control Editor{get;}
}
}