mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-06-27 14:36:27 +00:00
7 lines
209 B
C#
7 lines
209 B
C#
namespace AIStudio.Settings;
|
|
|
|
public abstract record ConfigMetaBase : IConfig
|
|
{
|
|
protected static SettingsManager CurrentSettingsManager => Program.SERVICE_PROVIDER.GetRequiredService<SettingsManager>();
|
|
}
|