public void CopyTo(ButtonLampConfig dest)
        {
            if (dest == null) return;

            dest.StartLamp = StartLamp;
            dest.StopLamp = StopLamp;
            dest.JamClearLamp = JamClearLamp;
            dest.SoundClearLamp = SoundClearLamp;
            dest.InitialLamp = InitialLamp;
        }
 public EquipmentStateConfig()
 {
     SignalTower = new SignalTowerConfig();
     ButtonLamp = new ButtonLampConfig();
 }