added new response model for tenders

This commit is contained in:
llsajjad
2025-09-07 10:07:53 +03:30
parent ab3d7c7b03
commit cd827ecbe4
12 changed files with 389 additions and 37 deletions
+13 -1
View File
@@ -35,6 +35,9 @@ class $AssetsIconsGen {
/// File path: assets/icons/arrow-right.svg
String get arrowRight => 'assets/icons/arrow-right.svg';
/// File path: assets/icons/arrow_down_small.svg
String get arrowDownSmall => 'assets/icons/arrow_down_small.svg';
/// File path: assets/icons/arrows.svg
String get arrows => 'assets/icons/arrows.svg';
@@ -129,6 +132,7 @@ class $AssetsIconsGen {
arrowLeftSmall,
arrowRightSmall,
arrowRight,
arrowDownSmall,
arrows,
calendar,
closeCircle,
@@ -163,6 +167,9 @@ class $AssetsIconsGen {
class $AssetsPngsGen {
const $AssetsPngsGen();
/// File path: assets/pngs/app_logo.png
AssetGenImage get appLogo => const AssetGenImage('assets/pngs/app_logo.png');
/// File path: assets/pngs/forgot_password.png
AssetGenImage get forgotPassword =>
const AssetGenImage('assets/pngs/forgot_password.png');
@@ -175,7 +182,12 @@ class $AssetsPngsGen {
const AssetGenImage('assets/pngs/web_login_image.png');
/// List of all assets
List<AssetGenImage> get values => [forgotPassword, logo, webLoginImage];
List<AssetGenImage> get values => [
appLogo,
forgotPassword,
logo,
webLoginImage,
];
}
class $AssetsSvgsGen {