mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 15:17:31 +00:00
14 lines
265 B
Dart
14 lines
265 B
Dart
class PowerClampEnergyStatus {
|
|
final String iconPath;
|
|
final String title;
|
|
final String value;
|
|
final String unit;
|
|
|
|
const PowerClampEnergyStatus({
|
|
required this.iconPath,
|
|
required this.title,
|
|
required this.value,
|
|
required this.unit,
|
|
});
|
|
}
|