10 lines
199 B
Dart
10 lines
199 B
Dart
|
|
|
||
|
|
import 'package:json_annotation/json_annotation.dart';
|
||
|
|
|
||
|
|
part 'ICKitchenDeviceInfoExt.g.dart';
|
||
|
|
@JsonSerializable()
|
||
|
|
class ICKitchenDeviceInfoExt{
|
||
|
|
String? ext;
|
||
|
|
|
||
|
|
ICKitchenDeviceInfoExt();
|
||
|
|
}
|