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