14 lines
355 B
Dart
14 lines
355 B
Dart
part of 'app_pages.dart';
|
|
|
|
sealed class LiveStockRoutes {
|
|
LiveStockRoutes._();
|
|
|
|
static const auth = '/AuthLiveStock';
|
|
static const init = '/liveStock';
|
|
static const requests = '/requests';
|
|
static const map = '/map';
|
|
static const profile = '/profile';
|
|
static const requestTagging = '$requests/tagging';
|
|
static const tagging = '/tagging';
|
|
}
|