// Copyright (c) Umbraco.
// See LICENSE for more details.
using Umbraco.Cms.Core.Events;
using Umbraco.Cms.Core.Models;
namespace Umbraco.Cms.Core.Notifications;
///
/// A notification that is used to trigger the IMediaService when the Save method is called in the API and after the data has been persisted.
///
public sealed class MediaSavedNotification : SavedNotification
{
public MediaSavedNotification(IMedia target, EventMessages messages)
: base(target, messages)
{
}
///
/// Initializes a new instance of the .
///
///
/// Gets the saved collection of objects.
///
///
/// Initializes a new instance of the .
///
public MediaSavedNotification(IEnumerable target, EventMessages messages)
: base(target, messages)
{
}
}