QueenFruits/Mobile Commerce/lib/core/constant/app_url.dart

13 lines
477 B
Dart

class AppUrl {
static const String LOGIN = '/customer/auth/login';
static const String REGISTER = '/customer/auth/register';
static const String TENANT = '/tenant';
static const String HOME = '/home';
static const String OUTLETS = '/outlets';
static const String PRODUCTS = '/products';
static const String CHECKOUT = '/checkout';
static const String ORDERS = '/orders';
static const String REVIEW = '/review';
static const String CUSTOMER = '/customer';
}