2025-06-03 23:26:38 +03:30
|
|
|
sealed class ChickenRoutes {
|
|
|
|
|
ChickenRoutes._();
|
2025-06-16 10:55:33 +03:30
|
|
|
|
2025-06-05 23:26:44 +03:30
|
|
|
static const _base = '/init';
|
2025-06-30 10:36:30 +03:30
|
|
|
static const init = '$_base/root';
|
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-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-06-03 23:26:38 +03:30
|
|
|
}
|