Add foundation
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
namespace Toolkit.Foundation;
|
||||
|
||||
public interface ISubscriptionManager
|
||||
{
|
||||
IEnumerable<object?> GetHandlers(Type notificationType, object key);
|
||||
|
||||
void Remove(object subscriber);
|
||||
|
||||
void Add(object subscriber);
|
||||
}
|
||||
Reference in New Issue
Block a user