2025-08-18 00:30:17 +07:00

24 lines
672 B
Dart

class ApiPath {
// Auth
static const String login = '/api/v1/auth/login';
static const String logout = '/api/v1/auth/logout';
// Analytic
static const String salesAnalytic = '/api/v1/analytics/sales';
static const String profitLossAnalytic = '/api/v1/analytics/profit-loss';
static const String categoryAnalytic = '/api/v1/analytics/categories';
// Inventory
static const String inventoryReportDetail =
'/api/v1/inventory/report/details';
// Category
static const String category = '/api/v1/categories';
// Product
static const String product = '/api/v1/products';
// Customer
static const String customer = '/api/v1/customers';
}