diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-10-29 18:34:54 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-10-29 18:34:54 -0400 |
| commit | 7d58ee93449de2f91b899b0b0fe19aa03af38f6b (patch) | |
| tree | b31c5307eef2a242e4210d9e5ea88f9bba0590ac /Emby.Dlna/Service | |
| parent | dca78b13411db96366dddfa0d68bb6d36d28ad14 (diff) | |
rework dlna project
Diffstat (limited to 'Emby.Dlna/Service')
| -rw-r--r-- | Emby.Dlna/Service/BaseControlHandler.cs | 4 | ||||
| -rw-r--r-- | Emby.Dlna/Service/BaseService.cs | 4 | ||||
| -rw-r--r-- | Emby.Dlna/Service/ControlErrorHandler.cs | 2 | ||||
| -rw-r--r-- | Emby.Dlna/Service/ServiceXmlBuilder.cs | 6 |
4 files changed, 8 insertions, 8 deletions
diff --git a/Emby.Dlna/Service/BaseControlHandler.cs b/Emby.Dlna/Service/BaseControlHandler.cs index c5de76eb5f..7bf119111e 100644 --- a/Emby.Dlna/Service/BaseControlHandler.cs +++ b/Emby.Dlna/Service/BaseControlHandler.cs @@ -1,6 +1,6 @@ using MediaBrowser.Controller.Configuration; using MediaBrowser.Controller.Dlna; -using MediaBrowser.Dlna.Server; +using Emby.Dlna.Server; using MediaBrowser.Model.Logging; using System; using System.Collections.Generic; @@ -8,7 +8,7 @@ using System.Linq; using System.Text; using System.Xml; -namespace MediaBrowser.Dlna.Service +namespace Emby.Dlna.Service { public abstract class BaseControlHandler { diff --git a/Emby.Dlna/Service/BaseService.cs b/Emby.Dlna/Service/BaseService.cs index aeea7b8f34..574d749588 100644 --- a/Emby.Dlna/Service/BaseService.cs +++ b/Emby.Dlna/Service/BaseService.cs @@ -1,9 +1,9 @@ using MediaBrowser.Common.Net; using MediaBrowser.Controller.Dlna; -using MediaBrowser.Dlna.Eventing; +using Emby.Dlna.Eventing; using MediaBrowser.Model.Logging; -namespace MediaBrowser.Dlna.Service +namespace Emby.Dlna.Service { public class BaseService : IEventManager { diff --git a/Emby.Dlna/Service/ControlErrorHandler.cs b/Emby.Dlna/Service/ControlErrorHandler.cs index 42b1fcbc99..139f99931e 100644 --- a/Emby.Dlna/Service/ControlErrorHandler.cs +++ b/Emby.Dlna/Service/ControlErrorHandler.cs @@ -2,7 +2,7 @@ using System; using System.Xml; -namespace MediaBrowser.Dlna.Service +namespace Emby.Dlna.Service { public class ControlErrorHandler { diff --git a/Emby.Dlna/Service/ServiceXmlBuilder.cs b/Emby.Dlna/Service/ServiceXmlBuilder.cs index 615a4bdb37..08eb804033 100644 --- a/Emby.Dlna/Service/ServiceXmlBuilder.cs +++ b/Emby.Dlna/Service/ServiceXmlBuilder.cs @@ -1,10 +1,10 @@ -using MediaBrowser.Dlna.Common; +using Emby.Dlna.Common; using System.Collections.Generic; using System.Security; using System.Text; -using MediaBrowser.Dlna.Server; +using Emby.Dlna.Server; -namespace MediaBrowser.Dlna.Service +namespace Emby.Dlna.Service { public class ServiceXmlBuilder { |
