2021-03-30 10:01:42 +02:00
|
|
|
// Copyright (c) Umbraco.
|
|
|
|
|
// See LICENSE for more details.
|
|
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using Umbraco.Cms.Core.Events;
|
|
|
|
|
using Umbraco.Cms.Core.Models;
|
|
|
|
|
|
2021-05-11 14:33:49 +02:00
|
|
|
namespace Umbraco.Cms.Core.Notifications
|
2021-03-30 10:01:42 +02:00
|
|
|
{
|
|
|
|
|
public class ScriptSavedNotification : SavedNotification<IScript>
|
|
|
|
|
{
|
|
|
|
|
public ScriptSavedNotification(IScript target, EventMessages messages) : base(target, messages)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ScriptSavedNotification(IEnumerable<IScript> target, EventMessages messages) : base(target, messages)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|