From 1dcd4e328c8f84795e85c8ce197496632c701599 Mon Sep 17 00:00:00 2001 From: Andrew Welker Date: Thu, 17 Jul 2025 12:32:26 -0500 Subject: [PATCH] fix: Destination support for USB --- .../Devices/DestinationListItem.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/PepperDash.Essentials.Core/Devices/DestinationListItem.cs b/src/PepperDash.Essentials.Core/Devices/DestinationListItem.cs index 19c40adb..41043b82 100644 --- a/src/PepperDash.Essentials.Core/Devices/DestinationListItem.cs +++ b/src/PepperDash.Essentials.Core/Devices/DestinationListItem.cs @@ -105,5 +105,12 @@ namespace PepperDash.Essentials.Core /// [JsonProperty("isProgramAudioDestination")] public bool isProgramAudioDestination { get; set; } + + /// + /// Gets or sets a value indicating whether this destination supports USB connections. + /// This is used to determine if the destination can handle USB. + /// + [JsonProperty("supportsUsb")] + public bool SupportsUsb { get; set; } } } \ No newline at end of file