mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 17:49:05 +00:00
11 lines
223 B
C#
11 lines
223 B
C#
using AIStudio.Settings;
|
|
|
|
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace AIStudio.Pages;
|
|
|
|
public partial class Assistants : ComponentBase
|
|
{
|
|
[Inject]
|
|
public SettingsManager SettingsManager { get; set; } = null!;
|
|
} |