2026-05-09 20:42:42 +02:00
|
|
|
class Routes {
|
|
|
|
|
static const String login = 'login';
|
|
|
|
|
static const String setPassword = 'set-password';
|
|
|
|
|
static const String onboarding = 'onboarding';
|
|
|
|
|
static const String home = 'home';
|
|
|
|
|
static const String masterData = 'master-data';
|
|
|
|
|
static const String products = 'products';
|
|
|
|
|
static const String companySettings = 'company-settings';
|
|
|
|
|
static const String staff = 'staff';
|
|
|
|
|
static const String stores = 'stores';
|
|
|
|
|
static const String providers = 'providers';
|
2026-05-15 10:12:05 +02:00
|
|
|
static const String providerForm = 'provider-form';
|
2026-05-09 20:42:42 +02:00
|
|
|
static const String settings = 'settings';
|
|
|
|
|
static const String themeSettings = 'themeSettings';
|
|
|
|
|
static const String operations = 'operations';
|
|
|
|
|
static const String customers = 'customers';
|
|
|
|
|
static const String tickets = 'tickets';
|
|
|
|
|
static const String ticketForm = 'ticket-form';
|
|
|
|
|
static const String operationForm = 'operation-form';
|
|
|
|
|
static const String uploadSuccess = 'upload-success';
|
|
|
|
|
static const String customerForm = 'customer-form';
|
2026-05-18 19:20:38 +02:00
|
|
|
static const String customerDetails = 'customer-details';
|
2026-05-09 20:42:42 +02:00
|
|
|
static const String upload = 'upload';
|
2026-05-14 15:59:46 +02:00
|
|
|
static const String ticketWorkspace = 'ticket-workspace';
|
2026-05-21 14:43:47 +02:00
|
|
|
static const String noteForm = 'note-form';
|
|
|
|
|
static const String notes = 'notes';
|
2026-05-26 12:28:12 +02:00
|
|
|
static const String tasks = 'tasks';
|
|
|
|
|
static const String taskForm = 'task-form';
|
2026-05-09 20:42:42 +02:00
|
|
|
}
|