mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-06 09:49:07 +00:00
16 lines
394 B
C#
16 lines
394 B
C#
|
using AIStudio.Tools;
|
||
|
|
||
|
using Microsoft.AspNetCore.Components;
|
||
|
|
||
|
namespace AIStudio.Components.Blocks;
|
||
|
|
||
|
public partial class ProcessComponent<T> : ComponentBase where T : struct, Enum
|
||
|
{
|
||
|
[Parameter]
|
||
|
public bool ShowProgressAnimation { get; set; }
|
||
|
|
||
|
[Parameter]
|
||
|
public ProcessStepValue StepValue { get; set; }
|
||
|
|
||
|
private readonly Process<T> process = Process<T>.INSTANCE;
|
||
|
}
|