Splits into files, adds ICacheRefresherNotificationFactory, removes Init method

This commit is contained in:
Shannon
2021-03-15 13:39:34 +11:00
parent 86eb87a885
commit f03fc25b4c
40 changed files with 318 additions and 151 deletions

View File

@@ -0,0 +1,11 @@
using Umbraco.Cms.Core.Sync;
namespace Umbraco.Cms.Core.Cache
{
public class UserCacheRefresherNotification : CacheRefresherNotification
{
public UserCacheRefresherNotification(object messageObject, MessageType messageType) : base(messageObject, messageType)
{
}
}
}