2025-05-19 16:17:01 +03:30
|
|
|
part of 'app_pages.dart';
|
|
|
|
|
|
|
|
|
|
sealed class LiveStockRoutes {
|
|
|
|
|
LiveStockRoutes._();
|
|
|
|
|
|
2025-07-27 15:13:37 +03:30
|
|
|
static const auth = '/AuthLiveStock';
|
2025-05-21 09:04:21 +03:30
|
|
|
static const init = '/liveStock';
|
2025-05-24 15:12:40 +03:30
|
|
|
static const requests = '/requests';
|
2025-08-25 09:56:50 +03:30
|
|
|
static const map = '/map';
|
2025-05-24 15:12:40 +03:30
|
|
|
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
|
|
|
}
|