Files
Umbraco-CMS/src/umbraco.editorControls/macrocontainer/MacroContainerEvent.cs
2013-09-25 19:03:05 +10:00

27 lines
715 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace umbraco.editorControls.macrocontainer
{
[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")]
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();
}
}
}