mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-12 10:09:07 +00:00
9 lines
131 B
C#
9 lines
131 B
C#
|
namespace AIStudio.Tools.ERIClient.DataModel;
|
||
|
|
||
|
public enum AuthMethod
|
||
|
{
|
||
|
NONE,
|
||
|
KERBEROS,
|
||
|
USERNAME_PASSWORD,
|
||
|
TOKEN,
|
||
|
}
|