2009-09-15 16:09:50 +00:00
using System ;
using System.Collections.Generic ;
using System.Linq ;
using System.Text ;
namespace umbraco.editorControls.macrocontainer
{
2013-09-25 19:03:05 +10:00
[Obsolete("IDataType and all other references to the legacy property editors are no longer used this will be removed from the codebase in future versions")]
2009-09-15 16:09:50 +00:00
public static class MacroContainerEvent
{
public delegate void ExecuteHandler ( ) ;
public static event ExecuteHandler Execute ;
public static void Add ( )
{
if ( Execute ! = null )
Execute ( ) ;
}
public static void Delete ( )
{
if ( Execute ! = null )
Execute ( ) ;
}
}
}