AI-Studio/app/MindWork AI Studio/Components/ProcessComponent.razor.cs

16 lines
387 B
C#
Raw Normal View History

2024-08-05 19:12:52 +00:00
using AIStudio.Tools;
using Microsoft.AspNetCore.Components;
2024-08-21 06:30:01 +00:00
namespace AIStudio.Components;
2024-08-05 19:12:52 +00:00
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;
}