Files
fcs/lib/domain/constants.dart

28 lines
866 B
Dart
Raw Normal View History

2020-09-13 21:49:39 +06:30
const config_collection = "configs";
const user_collection = "users";
const invitations_collection = "invitations";
2020-09-04 01:42:58 +06:30
const setting_doc_id = "setting";
2020-09-13 21:49:39 +06:30
const privilege_collection = "privileges";
2020-09-16 02:29:50 +06:30
const markets_collection = "markets";
const packages_collection = "packages";
2020-09-20 05:34:49 +06:30
const messages_collection = "messages";
2020-10-08 03:32:52 +06:30
const fcs_shipment_collection = "fcs_shipments";
2020-09-13 21:49:39 +06:30
2020-09-17 06:02:48 +06:30
const user_requested_status = "requested";
const user_invited_status = "invited";
const pkg_files_path = "/packages";
2020-09-18 21:33:41 +06:30
// Link page
const page_payment_methods = "payment_methods";
const page_buying_instructions = "buying_instructions";
2020-09-20 05:34:49 +06:30
// Message type
const message_type_package = "t_p";
2020-09-20 08:06:14 +06:30
const message_type_profile = "t_profile";
2020-09-20 05:34:49 +06:30
2020-10-08 03:32:52 +06:30
// Fcs shipment status
const fcs_shipment_confirmed_status = "confirmed";
const fcs_shipment_shipped_status = "shipped";
const fcs_shipment_delivered_status = "delivered";