Move notifications to core instead of infrastructure
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
// Copyright (c) Umbraco.
|
||||
// See LICENSE for more details.
|
||||
|
||||
using System.Collections.Generic;
|
||||
using Umbraco.Cms.Core.Events;
|
||||
using Umbraco.Cms.Core.Models;
|
||||
|
||||
namespace Umbraco.Cms.Core.Services.Notifications
|
||||
{
|
||||
public class ScriptSavedNotification : SavedNotification<IScript>
|
||||
{
|
||||
public ScriptSavedNotification(IScript target, EventMessages messages) : base(target, messages)
|
||||
{
|
||||
}
|
||||
|
||||
public ScriptSavedNotification(IEnumerable<IScript> target, EventMessages messages) : base(target, messages)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user