fix: Destination support for USB

This commit is contained in:
Andrew Welker
2025-07-17 12:32:26 -05:00
parent e76369726d
commit 1dcd4e328c

View File

@@ -105,5 +105,12 @@ namespace PepperDash.Essentials.Core
/// </summary>
[JsonProperty("isProgramAudioDestination")]
public bool isProgramAudioDestination { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this destination supports USB connections.
/// This is used to determine if the destination can handle USB.
/// </summary>
[JsonProperty("supportsUsb")]
public bool SupportsUsb { get; set; }
}
}