fix: removed useless attribute

This commit is contained in:
Denny09310
2025-11-09 13:49:21 +01:00
parent 71ced8db56
commit d8b0d0443d
3 changed files with 6 additions and 14 deletions

View File

@@ -1,8 +0,0 @@
using System;
namespace ElectronNET.API.Entities
{
internal class JsonPropertyAttribute : Attribute
{
}
}

View File

@@ -86,7 +86,7 @@ namespace ElectronNET.API.Entities
/// <value>
/// The show identifier.
/// </value>
[JsonProperty]
[JsonPropertyName("showID")]
internal string ShowID { get; set; }
/// <summary>
@@ -101,7 +101,7 @@ namespace ElectronNET.API.Entities
/// <value>
/// The click identifier.
/// </value>
[JsonProperty]
[JsonPropertyName("clickID")]
internal string ClickID { get; set; }
/// <summary>
@@ -118,7 +118,7 @@ namespace ElectronNET.API.Entities
/// <value>
/// The close identifier.
/// </value>
[JsonProperty]
[JsonPropertyName("closeID")]
internal string CloseID { get; set; }
/// <summary>
@@ -135,7 +135,7 @@ namespace ElectronNET.API.Entities
/// <value>
/// The reply identifier.
/// </value>
[JsonProperty]
[JsonPropertyName("replyID")]
internal string ReplyID { get; set; }
/// <summary>
@@ -150,7 +150,7 @@ namespace ElectronNET.API.Entities
/// <value>
/// The action identifier.
/// </value>
[JsonProperty]
[JsonPropertyName("actionID")]
internal string ActionID { get; set; }
/// <summary>