27 lines
715 B
C#
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();
|
|
}
|
|
}
|
|
}
|