Files
OrpaonVision/OrpaonVision.ConfigApp/Annotation/Options/CvatOptions.cs
2026-03-29 23:17:20 +08:00

23 lines
528 B
C#
Raw 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.ConfigApp.Annotation.Options;
/// <summary>
/// CVAT 连接配置。
/// </summary>
public sealed class CvatOptions
{
/// <summary>
/// CVAT 服务地址。
/// </summary>
public string ServerEndpoint { get; set; } = "http://127.0.0.1:8080";
/// <summary>
/// API Token预留
/// </summary>
public string? ApiToken { get; set; }
/// <summary>
/// 同步超时时间(秒)。
/// </summary>
public int SyncTimeoutSeconds { get; set; } = 60;
}