using System;
namespace umbraco.interfaces
{
///
/// 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.
///
public interface IDataPrevalue
{
///
/// Saves this instance.
///
void Save();
///
/// Gets the editor control.
///
/// The editor.
System.Web.UI.Control Editor{get;}
}
}