BotSharp/src/Infrastructure/BotSharp.Abstraction/MessageHub/Services/IObserverService.cs
2025-07-31 17:48:51 -05:00

9 lines
237 B
C#

using BotSharp.Abstraction.MessageHub.Models;
namespace BotSharp.Abstraction.MessageHub.Services;
public interface IObserverService
{
ObserverSubscriptionContainer<T> RegisterObservers<T>(string refId) where T : ObserveDataBase;
}