2025-06-03 23:26:38 +03:30
|
|
|
sealed class ChickenRoutes {
|
|
|
|
|
ChickenRoutes._();
|
2025-06-16 10:55:33 +03:30
|
|
|
|
2025-07-27 15:13:37 +03:30
|
|
|
static const auth = '/AuthChicken';
|
2025-07-12 17:06:29 +03:30
|
|
|
static const _base = '/chicken';
|
|
|
|
|
static const init = '$_base/';
|
2025-06-15 09:48:52 +03:30
|
|
|
static const home = '$_base/home';
|
2025-06-30 10:36:30 +03:30
|
|
|
static const buy = '$_base/buy';
|
2025-06-30 16:18:12 +03:30
|
|
|
static const sale = '$_base/sale';
|
2025-07-13 16:17:17 +03:30
|
|
|
static const segmentation = '$_base/segmentation';
|
2025-06-03 23:26:38 +03:30
|
|
|
|
2025-06-30 16:18:12 +03:30
|
|
|
//buys
|
|
|
|
|
static const buysOutOfProvince = '$buy/buyOutOfProvince';
|
|
|
|
|
static const buysInProvince = '$buy/buyInProvince';
|
2025-06-03 23:26:38 +03:30
|
|
|
|
2025-06-30 16:18:12 +03:30
|
|
|
//sales
|
|
|
|
|
static const salesInProvince = '$sale/SalesInProvince';
|
|
|
|
|
static const salesOutOfProvince = '$sale/saleOutOfProvince';
|
2025-07-16 18:31:47 +03:30
|
|
|
static const salesOutOfProvinceBuyer = '$sale/saleOutOfProvinceBuyer ';
|
2025-07-13 16:17:17 +03:30
|
|
|
|
|
|
|
|
|
2025-06-03 23:26:38 +03:30
|
|
|
}
|