Files
GSFV2/lib/model/device/ICDevice.dart

15 lines
329 B
Dart
Raw Permalink Normal View History

2024-04-10 12:51:20 +05:30
import 'package:json_annotation/json_annotation.dart';
part 'ICDevice.g.dart';
@JsonSerializable()
class ICDevice {
String? macAddr;
ICDevice(this.macAddr);
factory ICDevice.fromJson(Map<String, dynamic> json) => _$ICDeviceFromJson(json);
Map<String, dynamic> toJson() => _$ICDeviceToJson(this);
}