using Umbraco.Cms.Core.Notifications; using Umbraco.Cms.Core.Sync; namespace Umbraco.Cms.Core.Cache { /// /// Factory for creating cache refresher notification instances /// public interface ICacheRefresherNotificationFactory { /// /// Creates a /// /// The to create TNotification Create(object msgObject, MessageType type) where TNotification : CacheRefresherNotification; } }