using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Data.SqlTypes; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FocusVolumeControl.UI { internal class ValueWithOpacity { [JsonProperty("value")] public required T Value { get; init; } [JsonProperty("opacity")] public required float Opacity { get; init; } } }