Files
Umbraco-CMS/src/Umbraco.Core/Notifications/MediaRefreshNotification.cs
2021-07-14 11:56:30 -06:00

17 lines
529 B
C#

using System;
using System.ComponentModel;
using Umbraco.Cms.Core.Events;
using Umbraco.Cms.Core.Models;
namespace Umbraco.Cms.Core.Notifications
{
[Obsolete("This is only used for the internal cache and will change, use tree change notifications instead")]
[EditorBrowsable(EditorBrowsableState.Never)]
public class MediaRefreshNotification : EntityRefreshNotification<IMedia>
{
public MediaRefreshNotification(IMedia target, EventMessages messages) : base(target, messages)
{
}
}
}