Files
jellyfin-jellyfin-1/Emby.Dlna/Common/DeviceService.cs

23 lines
470 B
C#
Raw Normal View History

#pragma warning disable CS1591
#pragma warning disable SA1600
2016-10-29 18:34:54 -04:00
namespace Emby.Dlna.Common
2016-10-29 18:22:20 -04:00
{
public class DeviceService
{
public string ServiceType { get; set; }
public string ServiceId { get; set; }
public string ScpdUrl { get; set; }
public string ControlUrl { get; set; }
public string EventSubUrl { get; set; }
/// <inheritdoc />
2016-10-29 18:22:20 -04:00
public override string ToString()
=> ServiceId;
2016-10-29 18:22:20 -04:00
}
}