Files
Umbraco-CMS/src/Umbraco.Core/Notifications/ContentRefreshNotification.cs
2021-07-12 11:54:38 -06:00

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)
{
}
}
}