feat: type schedule and auth models

This commit is contained in:
Artem Kokos
2026-04-23 20:57:15 +07:00
parent fa403bfcce
commit 0fdaf0bac4
11 changed files with 531 additions and 243 deletions

12
lib/app/build_info.dart Normal file
View File

@@ -0,0 +1,12 @@
class BuildInfo {
static const String date = String.fromEnvironment(
'IGNIS_BUILD_DATE',
defaultValue: 'dev',
);
static const String gitSha = String.fromEnvironment(
'IGNIS_GIT_SHA',
defaultValue: 'local',
);
static String get label => 'build $date - $gitSha';
}