2016-10-29 22:34:54 +00:00
|
|
|
namespace Emby.Dlna.Common
|
2016-10-29 22:22:20 +00:00
|
|
|
{
|
2020-09-13 12:49:11 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Defines the <see cref="DeviceService" />.
|
|
|
|
/// </summary>
|
2016-10-29 22:22:20 +00:00
|
|
|
public class DeviceService
|
|
|
|
{
|
2020-09-13 12:49:11 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the Service Type.
|
|
|
|
/// </summary>
|
|
|
|
public string ServiceType { get; set; } = string.Empty;
|
2016-10-29 22:22:20 +00:00
|
|
|
|
2020-09-13 12:49:11 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the Service Id.
|
|
|
|
/// </summary>
|
|
|
|
public string ServiceId { get; set; } = string.Empty;
|
2016-10-29 22:22:20 +00:00
|
|
|
|
2020-09-13 12:49:11 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the Scpd Url.
|
|
|
|
/// </summary>
|
|
|
|
public string ScpdUrl { get; set; } = string.Empty;
|
2016-10-29 22:22:20 +00:00
|
|
|
|
2020-09-13 12:49:11 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the Control Url.
|
|
|
|
/// </summary>
|
|
|
|
public string ControlUrl { get; set; } = string.Empty;
|
2016-10-29 22:22:20 +00:00
|
|
|
|
2020-09-13 12:49:11 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the EventSubUrl.
|
|
|
|
/// </summary>
|
|
|
|
public string EventSubUrl { get; set; } = string.Empty;
|
2016-10-29 22:22:20 +00:00
|
|
|
|
2020-01-22 20:00:07 +00:00
|
|
|
/// <inheritdoc />
|
2020-09-13 12:49:11 +00:00
|
|
|
public override string ToString() => ServiceId;
|
2016-10-29 22:22:20 +00:00
|
|
|
}
|
|
|
|
}
|