12 lines
307 B
C#
12 lines
307 B
C#
|
|
using Umbraco.Cms.Core.Sync;
|
|||
|
|
|
|||
|
|
namespace Umbraco.Cms.Core.Cache
|
|||
|
|
{
|
|||
|
|
public class UserCacheRefresherNotification : CacheRefresherNotification
|
|||
|
|
{
|
|||
|
|
public UserCacheRefresherNotification(object messageObject, MessageType messageType) : base(messageObject, messageType)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|