Files
Umbraco-CMS/src/Umbraco.Core/Events/CancelableNotification.cs
2021-04-16 14:51:56 +02:00

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;
}
}
}