mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-11-26 21:44:55 +00:00
initialized Devices Page
This commit is contained in:
@ -1 +1,14 @@
|
||||
class DeviceModel {}
|
||||
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});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user