enrollment-app/lib/service/session/web_session.dart
2026-01-09 10:02:34 +05:30

29 lines
713 B
Dart

// class WebSession {
// // POST (HR / Active)
// static String? postClientId;
// static String? postBranchId;
// static String? postHrId;
// static List<dynamic>? postModules;
//
// // PRE (Enrollment)
// static String? preClientId;
// static String? preBranchId;
// static String? preHrId;
// static List<dynamic>? preModules;
//
// static bool get hasPost => postClientId != null;
// static bool get hasPre => preClientId != null;
//
// static void clear() {
// postClientId = null;
// postBranchId = null;
// postHrId = null;
// postModules = null;
//
// preClientId = null;
// preBranchId = null;
// preHrId = null;
// preModules = null;
// }
// }