23 lines
653 B
Dart
23 lines
653 B
Dart
sealed class ChickenRoutes {
|
|
ChickenRoutes._();
|
|
|
|
static const auth = '/AuthChicken';
|
|
static const _base = '/chicken';
|
|
static const init = '$_base/';
|
|
static const home = '$_base/home';
|
|
static const buy = '$_base/buy';
|
|
static const sale = '$_base/sale';
|
|
static const segmentation = '$_base/segmentation';
|
|
|
|
//buys
|
|
static const buysOutOfProvince = '$buy/buyOutOfProvince';
|
|
static const buysInProvince = '$buy/buyInProvince';
|
|
|
|
//sales
|
|
static const salesInProvince = '$sale/SalesInProvince';
|
|
static const salesOutOfProvince = '$sale/saleOutOfProvince';
|
|
static const salesOutOfProvinceBuyer = '$sale/saleOutOfProvinceBuyer ';
|
|
|
|
|
|
}
|