mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-06 11:09:05 +00:00
21 lines
534 B
C#
21 lines
534 B
C#
|
using Microsoft.AspNetCore.Components;
|
||
|
|
||
|
namespace AIStudio.Components.Blocks;
|
||
|
|
||
|
public partial class AssistantBlock : ComponentBase
|
||
|
{
|
||
|
[Parameter]
|
||
|
public string Name { get; set; } = string.Empty;
|
||
|
|
||
|
[Parameter]
|
||
|
public string Description { get; set; } = string.Empty;
|
||
|
|
||
|
[Parameter]
|
||
|
public string Icon { get; set; } = Icons.Material.Filled.DisabledByDefault;
|
||
|
|
||
|
[Parameter]
|
||
|
public string ButtonText { get; set; } = "Start";
|
||
|
|
||
|
[Parameter]
|
||
|
public string Link { get; set; } = string.Empty;
|
||
|
}
|