namespace OrpaonVision.ConfigApp.Annotation.Options;
///
/// CVAT 连接配置。
///
public sealed class CvatOptions
{
///
/// CVAT 服务地址。
///
public string ServerEndpoint { get; set; } = "http://127.0.0.1:8080";
///
/// API Token(预留)。
///
public string? ApiToken { get; set; }
///
/// 同步超时时间(秒)。
///
public int SyncTimeoutSeconds { get; set; } = 60;
}