diff options
Diffstat (limited to 'MediaBrowser.Dlna/PlayTo/DeviceService.cs')
| -rw-r--r-- | MediaBrowser.Dlna/PlayTo/DeviceService.cs | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/MediaBrowser.Dlna/PlayTo/DeviceService.cs b/MediaBrowser.Dlna/PlayTo/DeviceService.cs new file mode 100644 index 0000000000..082128b225 --- /dev/null +++ b/MediaBrowser.Dlna/PlayTo/DeviceService.cs @@ -0,0 +1,30 @@ + +namespace MediaBrowser.Dlna.PlayTo +{ + 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 DeviceService(string serviceType, string serviceId, string scpdUrl, string controlUrl, string eventSubUrl) + { + ServiceType = serviceType; + ServiceId = serviceId; + ScpdUrl = scpdUrl; + ControlUrl = controlUrl; + EventSubUrl = eventSubUrl; + } + + public override string ToString() + { + return string.Format("{0}", ServiceId); + } + } +} |
