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