29 lines
713 B
Dart
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;
|
|
// }
|
|
// }
|