2025-04-07 16:49:15 +03:30
|
|
|
part of 'app_pages.dart';
|
|
|
|
|
|
|
|
|
|
sealed class AppPaths {
|
|
|
|
|
AppPaths._();
|
|
|
|
|
|
|
|
|
|
static const String splash = '/splash';
|
2025-07-27 15:13:37 +03:30
|
|
|
static const String moduleList = '/moduleList';
|
2025-04-15 17:27:48 +03:30
|
|
|
static const String systemDesignPage = '/systemDesignPage';
|
2025-10-13 16:30:43 +03:30
|
|
|
static const String test = '/test';
|
2025-04-07 16:49:15 +03:30
|
|
|
}
|