fix: Adds missing StringEnumConverter

This commit is contained in:
Neil Dorin
2024-05-16 17:23:38 -06:00
parent cb16f2a505
commit 734149960b

View File

@@ -69,6 +69,7 @@ namespace PepperDash.Essentials.Core
/// Indicates if the item is a level, mute , or both /// Indicates if the item is a level, mute , or both
/// </summary> /// </summary>
[JsonProperty("type")] [JsonProperty("type")]
[JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
public eLevelControlType Type { get; set; } public eLevelControlType Type { get; set; }
} }