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

23 lines
580 B
C#
Raw Normal View History

using AIStudio.Settings;
using Microsoft.AspNetCore.Components;
namespace AIStudio.Components;
2025-04-27 07:06:05 +00:00
public partial class ProfileFormSelection : MSGComponentBase
{
[Parameter]
public Profile Profile { get; set; } = Profile.NO_PROFILE;
[Parameter]
public EventCallback<Profile> ProfileChanged { get; set; }
[Parameter]
public Func<Profile, string?> Validation { get; set; } = _ => null;
private async Task SelectionChanged(Profile profile)
{
this.Profile = profile;
await this.ProfileChanged.InvokeAsync(profile);
}
}