mirror of
https://github.com/supleed2/ELEC60013-ES-CW1.git
synced 2024-11-14 03:35:48 +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);
|
||
|
}
|