Files
Telegrator/src/Telegrator/Core/ICollectingProvider.cs
T
2026-03-09 13:23:21 +04:00

14 lines
409 B
C#

namespace Telegrator.Core;
/// <summary>
/// Interface for providers that collect and manage handler collections.
/// Provides access to a collection of handlers for various processing operations.
/// </summary>
public interface ICollectingProvider
{
/// <summary>
/// Gets the collection of handlers managed by this provider.
/// </summary>
public IHandlersCollection Handlers { get; }
}