From a8e77b16e78cec1f5138a1d3bece11ef61f3fdb5 Mon Sep 17 00:00:00 2001 From: Chomp Date: Sat, 19 Jul 2025 18:53:22 +0100 Subject: [PATCH] Added notification enum --- .../Enums/Hideout/HideoutNotificationType.cs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Libraries/SPTarkov.Server.Core/Models/Enums/Hideout/HideoutNotificationType.cs diff --git a/Libraries/SPTarkov.Server.Core/Models/Enums/Hideout/HideoutNotificationType.cs b/Libraries/SPTarkov.Server.Core/Models/Enums/Hideout/HideoutNotificationType.cs new file mode 100644 index 00000000..15665653 --- /dev/null +++ b/Libraries/SPTarkov.Server.Core/Models/Enums/Hideout/HideoutNotificationType.cs @@ -0,0 +1,17 @@ +namespace SPTarkov.Server.Core.Models.Enums.Hideout +{ + public enum HideoutNotificationType + { + None, + FuelIsLow, + NoFuel, + ReadyToConstruct, + ReadyToUpgrade, + ReadyToInstall, + ItemReady, + ItemCollected, + RepairComplete, + ScavCaseReady, + DecryptionComplete, + } +}