diff options
Diffstat (limited to 'MediaBrowser.Dlna/Common/DeviceService.cs')
| -rw-r--r-- | MediaBrowser.Dlna/Common/DeviceService.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/MediaBrowser.Dlna/Common/DeviceService.cs b/MediaBrowser.Dlna/Common/DeviceService.cs new file mode 100644 index 000000000..8f8b175a4 --- /dev/null +++ b/MediaBrowser.Dlna/Common/DeviceService.cs @@ -0,0 +1,21 @@ + +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); + } + } +} |
