fixed your tenders filters and service and home your tneders use your tenders service

This commit is contained in:
amirrezaghabeli
2025-09-08 09:53:21 +03:30
parent 326f2deeec
commit 9a1ec0b34e
23 changed files with 180 additions and 1279 deletions
@@ -0,0 +1,15 @@
class GetTendersRequestModel {
final String status;
final String createdFrom;
final String createdTo;
final int limit;
final int offset;
GetTendersRequestModel({
this.status = '',
this.createdFrom = '',
this.createdTo = '',
this.limit = 10,
this.offset = 0,
});
}