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,5 @@
class CommentArgument {
final String orderId;
CommentArgument({required this.orderId});
}

View File

@@ -0,0 +1,6 @@
class ImagePageArgument {
final List<String>? images;
final int? currentPage;
ImagePageArgument({this.images, this.currentPage});
}

View File

@@ -0,0 +1,6 @@
class OrderInfoArgument{
final String orderId;
final String orderNumber;
OrderInfoArgument({required this.orderId, required this.orderNumber});
}