16 lines
269 B
Dart
16 lines
269 B
Dart
|
|
|
|
// 设备模型类
|
|
class SearchDeviceItem {
|
|
final String id;
|
|
final String name;
|
|
final String deviceType;
|
|
final bool isOnline;
|
|
|
|
SearchDeviceItem({
|
|
required this.id,
|
|
required this.name,
|
|
required this.deviceType,
|
|
required this.isOnline,
|
|
});
|
|
} |