Skip to content

Commit

Permalink
Merge pull request #573 from tantumalice/serialization-fix
Browse files Browse the repository at this point in the history
Vibrancy serialization fix
  • Loading branch information
GregorBiswanger committed Jul 1, 2021
2 parents 29a2572 + cd9e06d commit fdd643b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ElectronNET.API/Entities/Vibrancy.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Newtonsoft.Json;
using System.Runtime.Serialization;

namespace ElectronNET.API.Entities
{
Expand All @@ -10,7 +10,7 @@ public enum Vibrancy
/// <summary>
/// The appearance based
/// </summary>
[JsonProperty("appearance-based")]
[EnumMember(Value = "appearance-based")]
appearanceBased,

/// <summary>
Expand Down Expand Up @@ -51,13 +51,13 @@ public enum Vibrancy
/// <summary>
/// The medium light
/// </summary>
[JsonProperty("medium-light")]
[EnumMember(Value = "medium-light")]
mediumLight,

/// <summary>
/// The ultra dark
/// </summary>
[JsonProperty("ultra-dark")]
[EnumMember(Value = "ultra-dark")]
ultraDark
}
}

0 comments on commit fdd643b

Please sign in to comment.