21 lines
393 B
C#
21 lines
393 B
C#
|
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<T>
|
|||
|
{
|
|||
|
[JsonProperty("value")]
|
|||
|
public required T Value { get; init; }
|
|||
|
|
|||
|
[JsonProperty("opacity")]
|
|||
|
public required float Opacity { get; init; }
|
|||
|
|
|||
|
}
|
|||
|
}
|