using System;
namespace umbraco.interfaces
{
///
/// Summary description for IMacroGuiRendering.
///
public interface IMacroGuiRendering
{
///
/// Gets or sets the value.
///
/// The value.
string Value {set; get;}
///
/// Gets a value indicating whether a caption is shown
///
/// true if [show caption]; otherwise, false.
bool ShowCaption {get;}
}
}