You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.0 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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; }
}
}