mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-03-22 22:11:36 +00:00
14 lines
485 B
C#
14 lines
485 B
C#
|
|
namespace AIStudio.Settings;
|
||
|
|
|
||
|
|
public enum ManagedConfigurationMode
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// The configuration is locked by a configuration plugin. The user cannot change the value of this setting, and it will be overridden by the plugin on each update.
|
||
|
|
/// </summary>
|
||
|
|
LOCKED,
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// The configuration has an editable default provided by a configuration plugin. The user can change the value of this setting.
|
||
|
|
/// </summary>
|
||
|
|
EDITABLE_DEFAULT,
|
||
|
|
}
|