Files
Telegrator/src/Telegrator/Core/ICollectingProvider.cs
T

14 lines
409 B
C#
Raw Normal View History

2026-03-09 13:23:21 +04:00
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
2025-07-24 23:19:59 +04:00
{
/// <summary>
2026-03-09 13:23:21 +04:00
/// Gets the collection of handlers managed by this provider.
2025-07-24 23:19:59 +04:00
/// </summary>
2026-03-09 13:23:21 +04:00
public IHandlersCollection Handlers { get; }
2025-07-24 23:19:59 +04:00
}