9 lines
170 B
C#
9 lines
170 B
C#
using Microsoft.Extensions.Hosting;
|
|
|
|
namespace Toolkit.Foundation;
|
|
|
|
public interface IComponentHost :
|
|
IHost
|
|
{
|
|
ComponentConfiguration? Configuration { get; }
|
|
} |