using System.Web.UI;
namespace umbraco.interfaces
{
///
/// Data type editor controls can choose to implement this interface
/// to customize their Live Editing behavior.
///
public interface ILiveEditingDataEditor
{
///
/// Gets the control used for Live Editing.
///
Control LiveEditingControl { get; }
}
}