21 lines
732 B
Dart
21 lines
732 B
Dart
sealed class StewardRoutes {
|
|
StewardRoutes._();
|
|
|
|
static const _base = '/chicken/steward';
|
|
static const initSteward = '$_base/';
|
|
static const homeSteward = '$_base/home';
|
|
static const buySteward = '$_base/buy';
|
|
static const saleSteward = '$_base/sale';
|
|
static const segmentationSteward = '$_base/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 ';
|
|
}
|