Files
Umbraco-CMS/umbraco/interfaces/IDataPrevalue.cs
Shandem f6d0d043b5 DO NOT DOWNLOAD. DOWNLOAT LATEST STABLE FROM RELEASE TAB
Created 4.1.0 branch

[TFS Changeset #55082]
2009-06-19 07:39:16 +00: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;}
}
}