BotSharp/src/Infrastructure/BotSharp.Abstraction/MessageHub/Services/IObserverService.cs

9 lines
237 B
C#
Raw Normal View History

2025-07-31 22:48:51 +00:00
using BotSharp.Abstraction.MessageHub.Models;
namespace BotSharp.Abstraction.MessageHub.Services;
public interface IObserverService
{
ObserverSubscriptionContainer<T> RegisterObservers<T>(string refId) where T : ObserveDataBase;
}