mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-25 10:24:55 +00:00
30 lines
964 B
C#
30 lines
964 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace PepperDash.Essentials.Core.Config
|
|
{
|
|
/// <summary>
|
|
/// Represents the base properties for a streaming device.
|
|
/// </summary>
|
|
public class BaseStreamingDeviceProperties
|
|
{
|
|
/// <summary>
|
|
/// The multicast video address for the streaming device.
|
|
/// </summary>
|
|
[JsonProperty("multicastVideoAddress", NullValueHandling = NullValueHandling.Ignore)]
|
|
public string MulticastVideoAddress { get; set; }
|
|
|
|
/// <summary>
|
|
/// The multicast audio address for the streaming device.
|
|
/// </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; }
|
|
}
|
|
}
|