2025-12-16 13:54:22 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace OpenAuth.App.ServiceApp.Response
|
|
|
|
|
|
{
|
|
|
|
|
|
public class StartDetectionResp
|
|
|
|
|
|
{
|
|
|
|
|
|
public string rtmp_url { get; set; }
|
|
|
|
|
|
public string push_url { get; set; }
|
|
|
|
|
|
public string taskname { get; set; }
|
|
|
|
|
|
public string taskid { get; set; }
|
2026-01-12 10:31:10 +08:00
|
|
|
|
public string algoInstancesName { get; set; }
|
|
|
|
|
|
public string uavType { get; set; }
|
2025-12-16 13:54:22 +08:00
|
|
|
|
public List<ModelConfig> models { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|