Initial commit

This commit is contained in:
jahongireshonqulov
2025-10-18 09:40:06 +05:00
commit 1bf3e41abe
352 changed files with 16315 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
class CommentRequest {
CommentRequest({
this.message,
this.rate,
this.orderNumber,});
CommentRequest.fromJson(dynamic json) {
message = json['message'];
rate = json['rate'];
orderNumber = json['order_number'];
}
String? message;
int? rate;
String? orderNumber;
Map<String, dynamic> toJson() {
final map = <String, dynamic>{};
map['message'] = message;
map['rate'] = rate;
map['order_number'] = orderNumber;
return map;
}
}