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 PtzCtrlTypes { get; set; } }