using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Media; namespace JiangsuEarthquake.Models { public class BoosterStationStateModel : ParameterModel { private ImageSource BoosterStation_device1; /// /// 设备1供电 /// public ImageSource BoosterStation_Device1 { get { return BoosterStation_device1; } set { BoosterStation_device1 = value; this.DoNotify(); } } private ImageSource BoosterStation_device2; /// /// 设备2供电 /// public ImageSource BoosterStation_Device2 { get { return BoosterStation_device2; } set { BoosterStation_device2 = value; this.DoNotify(); } } private ImageSource BoosterStation_device3; /// /// 设备3供电 /// public ImageSource BoosterStation_Device3 { get { return BoosterStation_device3; } set { BoosterStation_device3 = value; this.DoNotify(); } } private ImageSource BoosterStation_device4; /// /// 设备4供电 /// public ImageSource BoosterStation_Device4 { get { return BoosterStation_device4; } set { BoosterStation_device4 = value; this.DoNotify(); } } } }