From 94210704069b0ba4203ed53bdb22506f37cd72b0 Mon Sep 17 00:00:00 2001 From: CWX Date: Fri, 17 Jan 2025 18:38:43 +0000 Subject: [PATCH] Fix enum for WS --- Core/Models/Eft/Ws/WsNotificationEvent.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Core/Models/Eft/Ws/WsNotificationEvent.cs b/Core/Models/Eft/Ws/WsNotificationEvent.cs index 008326b4..c52b7345 100644 --- a/Core/Models/Eft/Ws/WsNotificationEvent.cs +++ b/Core/Models/Eft/Ws/WsNotificationEvent.cs @@ -5,6 +5,7 @@ namespace Core.Models.Eft.Ws; public record WsNotificationEvent { [JsonPropertyName("type")] + [JsonConverter(typeof(JsonStringEnumConverter))] public NotificationEventType? EventType { get; set; } [JsonPropertyName("eventId")]