using System.Collections.Generic; namespace Umbraco.Cms.Core.Notifications { public interface IStatefulNotification : INotification { IDictionary State { get; set; } } }