mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 15:17:31 +00:00
12 lines
217 B
Dart
12 lines
217 B
Dart
class FlushOperationalValue {
|
|
final String icon;
|
|
final String description;
|
|
final dynamic value;
|
|
|
|
FlushOperationalValue({
|
|
required this.icon,
|
|
required this.description,
|
|
required this.value,
|
|
});
|
|
}
|