17 lines
529 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|