20 lines
545 B
C#
20 lines
545 B
C#
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; }
|
|
public string algoInstancesName { get; set; }
|
|
public string uavType { get; set; }
|
|
public List<ModelConfig> models { get; set; }
|
|
}
|
|
}
|