mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 23:29:06 +00:00
21 lines
527 B
C#
21 lines
527 B
C#
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace AIStudio.Components;
|
|
|
|
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;
|
|
} |