11 lines
220 B
C#
11 lines
220 B
C#
using Microsoft.Extensions.Hosting;
|
|
|
|
namespace Toolkit.Foundation;
|
|
|
|
public interface IComponentHost :
|
|
IHost
|
|
{
|
|
TConfiguration? GetConfiguration<TConfiguration>()
|
|
where TConfiguration :
|
|
class;
|
|
} |