namespace IStation.Dto.Epanet
{
///
///
///
public class ZyScada
{
///
///
///
public ZyScada() { }
///
///
///
///
public ZyScada(ZyScada rhs)
{
this.Time = rhs.Time;
this.Id = rhs.Id;
this.Value = rhs.Value;
}
///
///
///
///
public void Reset(ZyScada rhs)
{
this.Time = rhs.Time;
this.Id = rhs.Id;
this.Value = rhs.Value;
}
///
/// 时间
///
public DateTime Time { get; set; }
///
/// 标识
///
public string Id { get; set; }
///
/// 值
///
public double? Value { get; set; }
}
}