2021-03-08 11:01:14 +01:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2021-05-11 14:33:49 +02:00
|
|
|
namespace Umbraco.Cms.Core.Notifications
|
2021-03-08 11:01:14 +01:00
|
|
|
{
|
|
|
|
|
public interface IStatefulNotification : INotification
|
|
|
|
|
{
|
2022-05-01 08:18:09 +02:00
|
|
|
IDictionary<string, object?> State { get; set; }
|
2021-03-08 11:01:14 +01:00
|
|
|
}
|
|
|
|
|
}
|