2025-10-24 01:16:50 +07:00
|
|
|
class ApiPath {
|
|
|
|
|
static const String login = '/api/v1/auth/login';
|
2025-10-24 13:55:00 +07:00
|
|
|
static const String outlets = '/api/v1/outlets';
|
2025-10-24 20:06:42 +07:00
|
|
|
static const String categories = '/api/v1/categories';
|
2025-10-24 22:03:35 +07:00
|
|
|
static const String products = '/api/v1/products';
|
2025-10-26 16:09:56 +07:00
|
|
|
static const String tables = '/api/v1/tables';
|
2025-10-26 22:57:22 +07:00
|
|
|
static const String customers = '/api/v1/customers';
|
2025-10-27 14:24:29 +07:00
|
|
|
static const String paymentMethods = '/api/v1/payment-methods';
|
2025-10-24 01:16:50 +07:00
|
|
|
}
|