mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-28 08:39:47 +00:00
13 lines
310 B
C#
13 lines
310 B
C#
using AIStudio.Settings;
|
|
|
|
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace AIStudio.Pages;
|
|
|
|
public partial class Assistants : ComponentBase
|
|
{
|
|
[Inject]
|
|
public SettingsManager SettingsManager { get; set; } = null!;
|
|
|
|
//TODO: On click aus AssistantBase.razor.cs -> private method mit hardcoded T
|
|
} |