19 lines
565 B
C#
19 lines
565 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 saved notifications instead")]
|
|
[CannotSuppressNotification]
|
|
[EditorBrowsable(EditorBrowsableState.Never)]
|
|
public class ContentRefreshNotification : EntityRefreshNotification<IContent>
|
|
{
|
|
public ContentRefreshNotification(IContent target, EventMessages messages) : base(target, messages)
|
|
{
|
|
}
|
|
}
|
|
}
|