Files
Umbraco-CMS/umbraco/interfaces/IDataPrevalue.cs

22 lines
613 B
C#
Raw Normal View History

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