jellyfin/Emby.Dlna/Common/DeviceService.cs

22 lines
438 B
C#
Raw Normal View History

2016-10-30 00:22:20 +02:00

namespace MediaBrowser.Dlna.Common
{
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; }
public override string ToString()
{
return string.Format("{0}", ServiceId);
}
}
}