mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-08-31 19:08:29 +00:00
feat: add audioDeviceKey property to SourceListItem and mark Destinations as obsolete
This commit is contained in:
parent
305a466b1b
commit
5b45a5caa6
1 changed files with 8 additions and 0 deletions
|
|
@ -138,7 +138,9 @@ namespace PepperDash.Essentials.Core
|
||||||
///
|
///
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("destinations")]
|
[JsonProperty("destinations")]
|
||||||
|
[Obsolete("This property is obsolete and will be removed in future versions.")]
|
||||||
public List<eSourceListItemDestinationTypes> Destinations { get; set; }
|
public List<eSourceListItemDestinationTypes> Destinations { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A means to reference a source list for this source item, in the event that this source has an input that can have sources routed to it
|
/// A means to reference a source list for this source item, in the event that this source has an input that can have sources routed to it
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
@ -175,6 +177,12 @@ namespace PepperDash.Essentials.Core
|
||||||
[JsonProperty("syncProviderDeviceKey")]
|
[JsonProperty("syncProviderDeviceKey")]
|
||||||
public string SyncProviderDeviceKey { get; set; }
|
public string SyncProviderDeviceKey { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The key of the device that provides audio for this source item
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("audioDeviceKey")]
|
||||||
|
public string AudioDeviceKey { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Indicates if the source supports USB connections
|
/// Indicates if the source supports USB connections
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue