mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-07-16 23:06:28 +00:00
13 lines
240 B
C#
13 lines
240 B
C#
|
|
namespace AIStudio.Tools.Media;
|
||
|
|
|
||
|
|
/// <summary>Lifecycle status retained independently for each owner.</summary>
|
||
|
|
public enum MediaImportStatus
|
||
|
|
{
|
||
|
|
QUEUED,
|
||
|
|
RUNNING,
|
||
|
|
CANCELING,
|
||
|
|
SUCCEEDED,
|
||
|
|
WARNING,
|
||
|
|
FAILED,
|
||
|
|
CANCELLED,
|
||
|
|
}
|