mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-12 17:21:36 +00:00
11 lines
209 B
C#
11 lines
209 B
C#
|
|
namespace AIStudio.Tools;
|
||
|
|
|
||
|
|
public static class DropLayers
|
||
|
|
{
|
||
|
|
public const int ROOT = 0;
|
||
|
|
|
||
|
|
public const int PAGES = 10;
|
||
|
|
public const int ASSISTANTS = 20;
|
||
|
|
|
||
|
|
public const int DIALOGS = 100;
|
||
|
|
}
|