41 lines
1.0 KiB
C#
41 lines
1.0 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Text.Json.Serialization;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace OpenAuth.App.ServiceApp.Request
|
||
{
|
||
public class DaHuaTaskInfo
|
||
{
|
||
public string channelId { get; set; }
|
||
|
||
public string userChannelCode { get; set; }
|
||
|
||
public int analysisType { get; set; }
|
||
|
||
public string url { get; set; }//待分析的rtsp码流地址,标准rtsp
|
||
|
||
public string memo { get; set; }
|
||
|
||
public string config { get; set; }
|
||
|
||
public string saasExtParam { get; set; }
|
||
|
||
public List<AnalysisRequest> algorithms { get; set; }
|
||
}
|
||
public class AnalysisRequest
|
||
{
|
||
public string name { get; set; }
|
||
|
||
public string edition { get; set; }
|
||
|
||
public string algorithmClass { get; set; }
|
||
|
||
public string rule { get; set; }
|
||
public string ruleType { get; set; }
|
||
}
|
||
|
||
}
|