We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30941df commit cd9e06dCopy full SHA for cd9e06d
ElectronNET.API/Entities/Vibrancy.cs
@@ -1,4 +1,4 @@
1
-using Newtonsoft.Json;
+using System.Runtime.Serialization;
2
3
namespace ElectronNET.API.Entities
4
{
@@ -10,7 +10,7 @@ public enum Vibrancy
10
/// <summary>
11
/// The appearance based
12
/// </summary>
13
- [JsonProperty("appearance-based")]
+ [EnumMember(Value = "appearance-based")]
14
appearanceBased,
15
16
@@ -51,13 +51,13 @@ public enum Vibrancy
51
52
/// The medium light
53
54
- [JsonProperty("medium-light")]
+ [EnumMember(Value = "medium-light")]
55
mediumLight,
56
57
58
/// The ultra dark
59
60
- [JsonProperty("ultra-dark")]
+ [EnumMember(Value = "ultra-dark")]
61
ultraDark
62
}
63
0 commit comments