dlprows 90c014e932 Add settings for fallback behavior
update action icon with padding
2023-08-20 20:52:48 -06:00

14 lines
240 B
C#

using Newtonsoft.Json;
namespace FocusVolumeControl.UI;
internal class ValueWithOpacity<T>
{
[JsonProperty("value")]
public required T Value { get; init; }
[JsonProperty("opacity")]
public required float Opacity { get; init; }
}