jellyfin/Emby.Dlna/Common/DeviceService.cs

37 lines
994 B
C#
Raw Normal View History

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