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.
22 lines
469 B
22 lines
469 B
2 years ago
|
using JiLinApp.Biz.TransmitAlarm;
|
||
|
using JiLinApp.Docking.Military;
|
||
|
using JiLinApp.Docking.Ptz;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace JiLinApp.Core;
|
||
|
|
||
|
public class AppConfig
|
||
|
{
|
||
|
public BaseConfig Base { get; set; }
|
||
|
|
||
|
public MilitaryConfig Military { get; set; }
|
||
|
|
||
|
public AlarmPlatformConfig AlarmPlatform { get; set; }
|
||
|
}
|
||
|
|
||
|
public class BaseConfig
|
||
|
{
|
||
|
public bool Console { get; set; }
|
||
|
|
||
|
public List<PtzControlTypeConfig> PtzCtrlTypes { get; set; }
|
||
|
}
|