Files
Umbraco-CMS/src/umbraco.interfaces/IMacroGuiRendering.cs

23 lines
680 B
C#

using System;
namespace umbraco.interfaces
{
/// <summary>
/// Summary description for IMacroGuiRendering.
/// </summary>
[Obsolete("This interface is no longer used and will be removed from the codebase in future versions")]
public interface IMacroGuiRendering : IDiscoverable
{
/// <summary>
/// Gets or sets the value.
/// </summary>
/// <value>The value.</value>
string Value {set; get;}
/// <summary>
/// Gets a value indicating whether a caption is shown
/// </summary>
/// <value><c>true</c> if [show caption]; otherwise, <c>false</c>.</value>
bool ShowCaption {get;}
}
}