Merge branch 'main' into copilot/fix-1290

This commit is contained in:
Andrew Welker
2025-07-25 07:48:49 -05:00
6 changed files with 288 additions and 12 deletions

View File

@@ -116,5 +116,12 @@ namespace PepperDash.Essentials.Core
/// </summary>
[JsonProperty("supportsUsb")]
public bool SupportsUsb { get; set; }
/// <summary>
/// The key of the destination port associated with this destination item
/// This is used to identify the specific port on the destination device that this item refers to for advanced routing
/// </summary>
[JsonProperty("destinationPortKey")]
public string DestinationPortKey { get; set; }
}
}

View File

@@ -183,6 +183,13 @@ namespace PepperDash.Essentials.Core
[JsonProperty("supportsUsb")]
public bool SupportsUsb { get; set; }
/// <summary>
/// The key of the source port associated with this source item
/// This is used to identify the specific port on the source device that this item refers to for advanced routing
/// </summary>
[JsonProperty("sourcePortKey")]
public string SourcePortKey { get; set; }
/// <summary>
/// Default constructor for SourceListItem, initializes the Icon to "Blank"