Files
Umbraco-CMS/src/Umbraco.Core/Events/IEventDefinition.cs

14 lines
224 B
C#
Raw Normal View History

2017-05-12 14:49:44 +02:00
using System;
namespace Umbraco.Core.Events
{
public interface IEventDefinition
{
object Sender { get; }
object Args { get; }
string EventName { get; }
void RaiseEvent();
}
2017-07-20 11:21:28 +02:00
}