mirror of
https://github.com/supleed2/ELEC60013-ES-CW1.git
synced 2024-11-10 01:35:50 +00:00
16 lines
399 B
Dart
16 lines
399 B
Dart
class MetricsData{
|
|
double currentReading, lowestReading, highestReading, minimumPossible, maximumPossible, lowCutOff, highCutOff;
|
|
String metric, units;
|
|
|
|
MetricsData(
|
|
this.currentReading,
|
|
this.lowestReading,
|
|
this.highestReading,
|
|
this.minimumPossible,
|
|
this.maximumPossible,
|
|
this.lowCutOff,
|
|
this.highCutOff,
|
|
this.metric,
|
|
this.units
|
|
);
|
|
} |