namespace IStation.Dto.Epanet
|
{
|
|
/// <summary>
|
/// µ÷¶ÈÖµ
|
/// </summary>
|
public class ScheduleValue
|
{
|
public ScheduleValue() { }
|
public ScheduleValue(ScheduleValue rhs)
|
{
|
this.ModelId = rhs.ModelId;
|
this.ScadaId = rhs.ScadaId;
|
this.ScadaValue = rhs.ScadaValue;
|
this.ModelValue = rhs.ModelValue;
|
this.Unit = rhs.Unit;
|
}
|
|
public string ModelId { get; set; }
|
public string ScadaId { get; set; }
|
public double? ScadaValue { get; set; }
|
public double? ModelValue { get; set; }
|
public string Unit { get; set; }
|
|
}
|
}
|