namespace AIStudio.Settings.DataModel; public enum DataSourceERIUsernamePasswordMode { /// /// The user manages the username and password locally. /// USER_MANAGED, /// /// The username and password are shared by all users and provided by configuration. /// SHARED_USERNAME_AND_PASSWORD, /// /// The username is read from the operating system, and the password is shared by all users. /// OS_USERNAME_SHARED_PASSWORD, }