mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-03-14 21:29:07 +00:00
16 lines
343 B
C#
16 lines
343 B
C#
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace AIStudio.Tools;
|
|
|
|
public sealed class NoComponent: IComponent
|
|
{
|
|
public void Attach(RenderHandle renderHandle)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public Task SetParametersAsync(ParameterView parameters)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |