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
998 B
C#
41 lines
998 B
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; }
|
|
|
|
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; }
|
|
}
|
|
|
|
}
|