You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
425 B
26 lines
425 B
using EC.Util.CameraSDK;
|
|
using System.Collections.Generic;
|
|
|
|
namespace JiLinApp.Core;
|
|
|
|
public class AppConfig
|
|
{
|
|
public BaseConfig Base { get; set; }
|
|
|
|
public List<CameraInfo> CameraList { get; set; }
|
|
}
|
|
|
|
public class BaseConfig
|
|
{
|
|
public bool Console { get; set; }
|
|
}
|
|
|
|
public class MqttConfig
|
|
{
|
|
}
|
|
|
|
public class ZmqConfig
|
|
{
|
|
public string AlarmPubAddr { get; set; }
|
|
public string AlarmPubTopic { get; set; }
|
|
}
|