mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-08-19 01:42:57 +00:00
6 lines
210 B
C#
6 lines
210 B
C#
|
namespace AIStudio.Settings;
|
||
|
|
||
|
public abstract record ConfigMetaBase : IConfig
|
||
|
{
|
||
|
protected static readonly SettingsManager SETTINGS_MANAGER = Program.SERVICE_PROVIDER.GetRequiredService<SettingsManager>();
|
||
|
}
|