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