10 lines
219 B
C#
10 lines
219 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public interface ISubscriptionManager
|
|
{
|
|
IEnumerable<object?> GetHandlers(Type notificationType, object key);
|
|
|
|
void Remove(object subscriber);
|
|
|
|
void Add(object subscriber);
|
|
} |