mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-20 01:32:12 +00:00
12 lines
230 B
C#
12 lines
230 B
C#
namespace AIStudio.Tools.Services;
|
|
|
|
/// <summary>Lifecycle status retained independently for each owner.</summary>
|
|
public enum MediaImportStatus
|
|
{
|
|
QUEUED,
|
|
RUNNING,
|
|
CANCELING,
|
|
SUCCEEDED,
|
|
FAILED,
|
|
CANCELLED,
|
|
} |