mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-06 00:49:07 +00:00
9 lines
156 B
C#
9 lines
156 B
C#
|
namespace AIStudio.Settings;
|
||
|
|
||
|
public enum WorkspaceStorageBehavior
|
||
|
{
|
||
|
DISABLE_WORKSPACES,
|
||
|
|
||
|
STORE_CHATS_AUTOMATICALLY,
|
||
|
STORE_CHATS_MANUALLY,
|
||
|
}
|