v1
This commit is contained in:
22
OrpaonVision.ConfigApp/Annotation/Options/CvatOptions.cs
Normal file
22
OrpaonVision.ConfigApp/Annotation/Options/CvatOptions.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user