Files
2024-01-31 22:33:23 +00:00

10 lines
161 B
C#

using Microsoft.Extensions.Hosting;
namespace Hyperbar.Widget;
public interface IWidgetHost :
IHost
{
WidgetConfiguration Configuration { get; }
}