Merge pull request #1314 from PepperDash/streaming-device-properties

This commit is contained in:
Neil Dorin 2025-08-15 11:52:20 -06:00 committed by GitHub
commit 40406b797d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -19,5 +19,11 @@ namespace PepperDash.Essentials.Core.Config
/// </summary>
[JsonProperty("multicastAudioAddress", NullValueHandling = NullValueHandling.Ignore)]
public string MulticastAudioAddress { get; set; }
/// <summary>
/// The URL for the streaming device's media stream.
/// </summary>
[JsonProperty("streamUrl", NullValueHandling = NullValueHandling.Ignore)]
public string StreamUrl { get; set; }
}
}