Files
OrpaonVision/OrpaonVision.Core/Enums/AnnotationPlatformEnum.cs
2026-03-29 23:17:20 +08:00

17 lines
394 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace OrpaonVision.Core.Enums;
/// <summary>
/// 标注平台类型。
///
/// 说明:
/// - 根据当前需求文档,系统当前版本仅支持 CVAT
/// - 后续若扩展其他平台,可在本枚举中追加,并由适配层实现差异化处理。
/// </summary>
public enum AnnotationPlatformEnum
{
/// <summary>
/// CVAT 平台。
/// </summary>
Cvat = 1
}