2025-07-31 22:48:51 +00:00
|
|
|
namespace BotSharp.Abstraction.MessageHub.Observers;
|
|
|
|
|
|
|
|
|
|
public interface IBotSharpObserver<T> : IObserver<T>
|
|
|
|
|
{
|
2025-08-01 18:23:46 +00:00
|
|
|
string Name { get; }
|
|
|
|
|
bool Active { get; }
|
2025-07-31 22:48:51 +00:00
|
|
|
void Activate();
|
|
|
|
|
void Deactivate();
|
|
|
|
|
}
|