using AIStudio.Tools; using Microsoft.AspNetCore.Components; namespace AIStudio.Components; public partial class ProcessComponent : ComponentBase where T : struct, Enum { [Parameter] public bool ShowProgressAnimation { get; set; } [Parameter] public ProcessStepValue StepValue { get; set; } private readonly Process process = Process.INSTANCE; }