60 lines
1.5 KiB
C#
60 lines
1.5 KiB
C#
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;
|
|
|
|
/// <summary>
|
|
/// 设备1供电
|
|
/// </summary>
|
|
public ImageSource BoosterStation_Device1
|
|
{
|
|
get { return BoosterStation_device1; }
|
|
set { BoosterStation_device1 = value; this.DoNotify(); }
|
|
}
|
|
|
|
|
|
private ImageSource BoosterStation_device2;
|
|
|
|
/// <summary>
|
|
/// 设备2供电
|
|
/// </summary>
|
|
public ImageSource BoosterStation_Device2
|
|
{
|
|
get { return BoosterStation_device2; }
|
|
set { BoosterStation_device2 = value; this.DoNotify(); }
|
|
}
|
|
|
|
|
|
private ImageSource BoosterStation_device3;
|
|
|
|
/// <summary>
|
|
/// 设备3供电
|
|
/// </summary>
|
|
public ImageSource BoosterStation_Device3
|
|
{
|
|
get { return BoosterStation_device3; }
|
|
set { BoosterStation_device3 = value; this.DoNotify(); }
|
|
}
|
|
|
|
|
|
private ImageSource BoosterStation_device4;
|
|
|
|
/// <summary>
|
|
/// 设备4供电
|
|
/// </summary>
|
|
public ImageSource BoosterStation_Device4
|
|
{
|
|
get { return BoosterStation_device4; }
|
|
set { BoosterStation_device4 = value; this.DoNotify(); }
|
|
}
|
|
}
|
|
}
|