mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-05-25 04:32:14 +00:00
8 lines
129 B
C#
8 lines
129 B
C#
|
|
namespace AIStudio.Tools.AIJobs;
|
||
|
|
|
||
|
|
public enum AIJobSchedulingClass
|
||
|
|
{
|
||
|
|
NONE,
|
||
|
|
TOP_LEVEL_USER_JOB,
|
||
|
|
INTERNAL_DEPENDENCY,
|
||
|
|
}
|