10 lines
161 B
C#
10 lines
161 B
C#
using Microsoft.Extensions.Hosting;
|
|
|
|
namespace Hyperbar.Widget;
|
|
|
|
public interface IWidgetHost :
|
|
IHost
|
|
{
|
|
WidgetConfiguration Configuration { get; }
|
|
}
|