Files

14 lines
355 B
Dart
Raw Permalink Normal View History

2025-05-19 16:17:01 +03:30
part of 'app_pages.dart';
sealed class LiveStockRoutes {
LiveStockRoutes._();
static const auth = '/AuthLiveStock';
2025-05-21 09:04:21 +03:30
static const init = '/liveStock';
static const requests = '/requests';
static const map = '/map';
static const profile = '/profile';
2025-05-25 16:54:43 +03:30
static const requestTagging = '$requests/tagging';
static const tagging = '/tagging';
2025-05-19 16:17:01 +03:30
}