init
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
namespace DatabaseExport
|
||||
{
|
||||
public class SensorRange //: INotifyPropertyChanged
|
||||
{
|
||||
public double Low { get; set; }
|
||||
|
||||
public double Medium { get; set; }
|
||||
|
||||
public double High { get; set; }
|
||||
public SensorRange(double _low, double _medium, double _high)
|
||||
{
|
||||
Low = _low;
|
||||
Medium = _medium;
|
||||
High = _high;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user