namespace AIStudio.Settings;
public enum ManagedConfigurationMode
{
///
/// 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.
///
LOCKED,
///
/// The configuration has an editable default provided by a configuration plugin. The user can change the value of this setting.
///
EDITABLE_DEFAULT,
}