mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 15:17:31 +00:00
14 lines
266 B
Dart
14 lines
266 B
Dart
class PhasesEnergyConsumption {
|
|
final int month;
|
|
final double phaseA;
|
|
final double phaseB;
|
|
final double phaseC;
|
|
|
|
const PhasesEnergyConsumption({
|
|
required this.month,
|
|
required this.phaseA,
|
|
required this.phaseB,
|
|
required this.phaseC,
|
|
});
|
|
}
|