Files
Umbraco-CMS/src/umbraco.interfaces/IDataEditorAjaxAlternative.cs
2012-06-22 20:39:48 +04:00

17 lines
390 B
C#

using System;
namespace umbraco.interfaces
{
/// <summary>
/// The alternative Data Editor which supports AJAX
/// </summary>
public interface IDataEditorAjaxAlternative
{
/// <summary>
/// Gets the ajax editor.
/// </summary>
/// <value>The ajax editor.</value>
System.Web.UI.Control AjaxEditor { get; }
}
}