mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-15 17:47:28 +00:00
7 lines
142 B
Dart
7 lines
142 B
Dart
class GroupDevicesModel {
|
|
String? icon;
|
|
final String? name;
|
|
final String? dec;
|
|
GroupDevicesModel({this.icon, this.name, this.dec});
|
|
}
|