12 lines
264 B
C#
12 lines
264 B
C#
namespace Umbraco.Cms.Core.Events
|
|
{
|
|
public class CancelableNotification : StatefulNotification, ICancelableNotification
|
|
{
|
|
public bool Cancel { get; set; }
|
|
public void CancelOperation()
|
|
{
|
|
Cancel = true;
|
|
}
|
|
}
|
|
}
|