Move cache related helper to the right class
[e-mobility-charging-stations-simulator.git] / src / utils / Constants.ts
index efa0826fa9abc1b011daa72256eebcdd3799f23a..d3128469a0f3f8b1d372d202325a1d54fcfb4a47 100644 (file)
@@ -90,6 +90,11 @@ export default class Constants {
   static readonly CHARGING_STATION_DEFAULT_RESET_TIME = 60000; // Ms
   static readonly CHARGING_STATION_ATG_INITIALIZATION_TIME = 1000; // Ms
   static readonly CHARGING_STATION_ATG_DEFAULT_STOP_AFTER_HOURS = 0.25; // Hours
+  static readonly CHARGING_STATION_CONFIGURATION_SECTIONS = Object.freeze([
+    'stationInfo',
+    'configurationKey',
+    'configurationHash',
+  ]);
 
   static readonly DEFAULT_HASH_ALGORITHM = 'sha384';