mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-15 17:47:28 +00:00
15 lines
302 B
Dart
15 lines
302 B
Dart
class DeviceModel {
|
|
final String name;
|
|
final String imageUrl;
|
|
final String description;
|
|
final String category;
|
|
final String id;
|
|
|
|
DeviceModel(
|
|
{required this.name,
|
|
required this.imageUrl,
|
|
required this.description,
|
|
required this.category,
|
|
required this.id});
|
|
}
|