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