30 lines
703 B
Dart
30 lines
703 B
Dart
import 'package:rasadyar_chicken/features/common/presentation/routes/routes.dart';
|
|
|
|
sealed class ChickenRoutes {
|
|
ChickenRoutes._();
|
|
|
|
static const _base = '/chicken';
|
|
static const auth = CommonRoutes.auth;
|
|
|
|
|
|
|
|
|
|
|
|
//endregion
|
|
|
|
//region poultry Farm Inspection
|
|
static const _poultryFarmInspection = '$_base/poultryFarmInspection';
|
|
static const poultryFarmInspectionHome = '$_poultryFarmInspection/Home';
|
|
|
|
//endregion
|
|
|
|
//region KillHouse Routes
|
|
|
|
static const _killHouse = '$_base/killHouse';
|
|
static const initKillHouse = '$_killHouse/home';
|
|
static const actionKillHouse = '$_killHouse/action';
|
|
static const submitRequestKillHouse = '$actionKillHouse/submitRequest';
|
|
|
|
//endregion
|
|
}
|