mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-05-19 05:32:15 +00:00
19 lines
533 B
C#
19 lines
533 B
C#
|
|
namespace AIStudio.Settings.DataModel;
|
||
|
|
|
||
|
|
public enum DataSourceERIUsernamePasswordMode
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// The user manages the username and password locally.
|
||
|
|
/// </summary>
|
||
|
|
USER_MANAGED,
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// The username and password are shared by all users and provided by configuration.
|
||
|
|
/// </summary>
|
||
|
|
SHARED_USERNAME_AND_PASSWORD,
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// The username is read from the operating system, and the password is shared by all users.
|
||
|
|
/// </summary>
|
||
|
|
OS_USERNAME_SHARED_PASSWORD,
|
||
|
|
}
|