// 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 { public ScriptSavedNotification(IScript target, EventMessages messages) : base(target, messages) { } public ScriptSavedNotification(IEnumerable target, EventMessages messages) : base(target, messages) { } } }