This commit is contained in:
2026-03-29 23:17:20 +08:00
commit 7dc5e73af7
36 changed files with 1480 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
namespace OrpaonVision.Core.Enums;
/// <summary>
/// 标注任务同步状态。
/// </summary>
public enum AnnotationSyncStatusEnum
{
/// <summary>
/// 未同步。
/// </summary>
None = 0,
/// <summary>
/// 同步中。
/// </summary>
Syncing = 1,
/// <summary>
/// 同步成功。
/// </summary>
Succeeded = 2,
/// <summary>
/// 同步失败。
/// </summary>
Failed = 3
}