* Gather all notifications in Umbraco.Cms.Core.Notifications * Rename notifications to match convention * Move and rename missed notifications * Move the three remaining public notification into Umbraco.Cms.Core.Notifications
12 lines
329 B
C#
12 lines
329 B
C#
using Umbraco.Cms.Core.Sync;
|
|
|
|
namespace Umbraco.Cms.Core.Notifications
|
|
{
|
|
public class ApplicationCacheRefresherNotification : CacheRefresherNotification
|
|
{
|
|
public ApplicationCacheRefresherNotification(object messageObject, MessageType messageType) : base(messageObject, messageType)
|
|
{
|
|
}
|
|
}
|
|
}
|