using System; using System.Web.UI; namespace umbraco.interfaces { /// /// Data type editor controls can choose to implement this interface /// to customize their Live Editing behavior. /// [Obsolete("ILiveEditingDataEditor is obsolete and is no longer used, it will be removed from the codebase in future versions")] public interface ILiveEditingDataEditor { /// /// Gets the control used for Live Editing. /// Control LiveEditingControl { get; } } }