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