mirror of
https://github.com/supleed2/ELEC60013-ES-CW1.git
synced 2024-11-12 18:55:49 +00:00
6 lines
115 B
Dart
6 lines
115 B
Dart
|
class TempSeries {
|
||
|
final DateTime date;
|
||
|
final double temperature;
|
||
|
|
||
|
TempSeries(this.date, this.temperature);
|
||
|
}
|