BotSharp/src/Infrastructure/BotSharp.Abstraction/Shared/IHaveServiceProvider.cs

7 lines
128 B
C#
Raw Normal View History

2024-11-04 22:44:41 +00:00
namespace BotSharp.Abstraction.Shared;
public interface IHaveServiceProvider
{
IServiceProvider ServiceProvider { get; }
}