23 lines
574 B
Dart
23 lines
574 B
Dart
sealed class ChickenRoutes {
|
|
ChickenRoutes._();
|
|
|
|
static const _base = '/chicken';
|
|
|
|
//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
|
|
}
|