BotSharp/src/Infrastructure/BotSharp.Abstraction/Shared/IHaveServiceProvider.cs
2024-11-04 16:44:41 -06:00

7 lines
128 B
C#

namespace BotSharp.Abstraction.Shared;
public interface IHaveServiceProvider
{
IServiceProvider ServiceProvider { get; }
}