Files
rasadyar_application/packages/chicken/lib/presentation/routes/routes.dart

44 lines
1.4 KiB
Dart

sealed class ChickenRoutes {
ChickenRoutes._();
static const auth = '/AuthChicken';
static const _base = '/chicken';
static const role = '$_base/role';
static const String profile = '$_base/profile';
//region Steward Routes
static const _steward = '$_base/steward';
static const initSteward = '$_steward/';
static const homeSteward = '$_steward/home';
static const buySteward = '$_steward/buy';
static const saleSteward = '$_steward/sale';
static const segmentationSteward = '$_steward/segmentation';
//buys
static const buysOutOfProvinceSteward = '$buySteward/buyOutOfProvince';
static const buysInProvinceSteward = '$buySteward/buyInProvince';
//sales
static const salesInProvinceSteward = '$saleSteward/SalesInProvince';
static const salesOutOfProvinceSteward = '$saleSteward/saleOutOfProvince';
static const salesOutOfProvinceBuyerSteward =
'$saleSteward/saleOutOfProvinceBuyer ';
//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
}