using System;
|
|
namespace IStation.Model
|
{
|
public class TimeWaterLevel
|
{
|
public TimeWaterLevel() { }
|
public TimeWaterLevel(TimeWaterLevel rhs)
|
{
|
this.Time = rhs.Time;
|
this.Level = rhs.Level;
|
}
|
public TimeWaterLevel(DateTime time, double level) { this.Time = time; this.Level = level; }
|
public DateTime Time { get; set; }
|
public double Level { get; set; }
|
}
|
public class TileLevel
|
{
|
public TileLevel() { }
|
public TileLevel(int hour, double level) { this.Hour = hour; this.Level = level; }
|
public int Hour { get; set; }
|
public double Level { get; set; }
|
}
|
}
|