Files
Umbraco-CMS/src/Umbraco.Core/Cache/MediaCacheRefresherNotification.cs

12 lines
309 B
C#
Raw Normal View History

using Umbraco.Cms.Core.Sync;
namespace Umbraco.Cms.Core.Cache
{
public class MediaCacheRefresherNotification : CacheRefresherNotification
{
public MediaCacheRefresherNotification(object messageObject, MessageType messageType) : base(messageObject, messageType)
{
}
}
}