Aidra Driver 1.3.5+68
Aidra Driver - Your path to green energy
Loading...
Searching...
No Matches
res_cancelation_reason_model.dart
Go to the documentation of this file.
1import '../../../domain/entities/res/res_cancellation_reason_entity.dart';
2
4
6 super.id,
7 super.name,
8 });
9
10 factory ResCancelationReasonModel.fromJson(Map<String, dynamic> json) {
12 id: json['id'],
13 name: json['name'],
14 );
15 }
16
17 Map<String, dynamic> toJson() {
18 return {
19 'id': id,
20 'name': name,
21 };
22 }
23}
ResCancellationReasonEntity({ required this.id, required this.name, })
ResCancelationReasonModel({ super.id, super.name, })