Initial commit

This commit is contained in:
jahongireshonqulov
2025-10-17 19:42:02 +05:00
commit 9fbdabafb4
1420 changed files with 28021 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
class ProductVariationData{
String name;
int id;
List<ProductVariationValue> values;
ProductVariationData({
required this.id,
required this.name,
required this.values,
});
}
class ProductVariationValue {
var id;
String name;
var code;
bool isChosen;
ProductVariationValue({
required this.id,
required this.isChosen,
required this.name,
this.code,
});
}

View File

@@ -0,0 +1,12 @@
import 'package:grostore/models/common/user_info.dart';
import 'package:grostore/models/currency_response.dart';
import 'package:grostore/models/setting_response.dart';
class SystemData {
// static CurrencyInfo? systemCurrency;
static SettingResponse? settings;
static bool isLogIn = false;
static UserInfo userInfo =
UserInfo(name: "", phone: "", balance: "", avatar: "");
static String couponCode = "";
}