From 9d6861ffcddbf151b6f3de5a53ff69e88810b7f6 Mon Sep 17 00:00:00 2001 From: Denny09310 Date: Sun, 9 Nov 2025 14:00:30 +0100 Subject: [PATCH] fix: including internal properties in json --- .../API/Entities/NotificationOptions.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/ElectronNET.API/API/Entities/NotificationOptions.cs b/src/ElectronNET.API/API/Entities/NotificationOptions.cs index 3446d97..ce9fb68 100644 --- a/src/ElectronNET.API/API/Entities/NotificationOptions.cs +++ b/src/ElectronNET.API/API/Entities/NotificationOptions.cs @@ -86,7 +86,7 @@ namespace ElectronNET.API.Entities /// /// The show identifier. /// - [JsonPropertyName("showID")] + [JsonInclude] internal string ShowID { get; set; } /// @@ -101,7 +101,7 @@ namespace ElectronNET.API.Entities /// /// The click identifier. /// - [JsonPropertyName("clickID")] + [JsonInclude] internal string ClickID { get; set; } /// @@ -118,7 +118,7 @@ namespace ElectronNET.API.Entities /// /// The close identifier. /// - [JsonPropertyName("closeID")] + [JsonInclude] internal string CloseID { get; set; } /// @@ -135,7 +135,7 @@ namespace ElectronNET.API.Entities /// /// The reply identifier. /// - [JsonPropertyName("replyID")] + [JsonInclude] internal string ReplyID { get; set; } /// @@ -150,7 +150,7 @@ namespace ElectronNET.API.Entities /// /// The action identifier. /// - [JsonPropertyName("actionID")] + [JsonInclude] internal string ActionID { get; set; } ///