diff options
| author | LukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com> | 2012-09-08 11:10:26 -0400 |
|---|---|---|
| committer | LukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com> | 2012-09-08 11:10:26 -0400 |
| commit | faead199a59b084a9197b394e2214c6cd2f9b9e4 (patch) | |
| tree | 98e112f45559abb30adbb6fb992abf270a1e89e2 | |
| parent | 1400e5ad9d1287533e75aa1ee13eb65999907bb6 (diff) | |
Moved AuthenticationResult
| -rw-r--r-- | MediaBrowser.Api/HttpHandlers/UserAuthenticationHandler.cs | 1 | ||||
| -rw-r--r-- | MediaBrowser.ApiInteraction.Portable/ApiClient.cs | 4 | ||||
| -rw-r--r-- | MediaBrowser.ApiInteraction/ApiClient.cs | 4 | ||||
| -rw-r--r-- | MediaBrowser.Controller/Kernel.cs | 1 | ||||
| -rw-r--r-- | MediaBrowser.Model/Authentication/AuthenticationResult.cs (renamed from MediaBrowser.Model/Entities/AuthenticationResult.cs) | 2 | ||||
| -rw-r--r-- | MediaBrowser.Model/MediaBrowser.Model.csproj | 2 |
6 files changed, 8 insertions, 6 deletions
diff --git a/MediaBrowser.Api/HttpHandlers/UserAuthenticationHandler.cs b/MediaBrowser.Api/HttpHandlers/UserAuthenticationHandler.cs index b9499e9df..b3867cde7 100644 --- a/MediaBrowser.Api/HttpHandlers/UserAuthenticationHandler.cs +++ b/MediaBrowser.Api/HttpHandlers/UserAuthenticationHandler.cs @@ -1,5 +1,6 @@ using MediaBrowser.Common.Net.Handlers;
using MediaBrowser.Controller;
+using MediaBrowser.Model.Authentication;
using MediaBrowser.Model.Entities;
using System.ComponentModel.Composition;
using System.Net;
diff --git a/MediaBrowser.ApiInteraction.Portable/ApiClient.cs b/MediaBrowser.ApiInteraction.Portable/ApiClient.cs index c870b1c3e..cbd179b02 100644 --- a/MediaBrowser.ApiInteraction.Portable/ApiClient.cs +++ b/MediaBrowser.ApiInteraction.Portable/ApiClient.cs @@ -1,6 +1,6 @@ -using MediaBrowser.Model.Configuration;
+using MediaBrowser.Model.Authentication;
+using MediaBrowser.Model.Configuration;
using MediaBrowser.Model.DTO;
-using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Weather;
using System;
using System.Collections.Generic;
diff --git a/MediaBrowser.ApiInteraction/ApiClient.cs b/MediaBrowser.ApiInteraction/ApiClient.cs index a621963ec..62a534e32 100644 --- a/MediaBrowser.ApiInteraction/ApiClient.cs +++ b/MediaBrowser.ApiInteraction/ApiClient.cs @@ -1,6 +1,6 @@ -using MediaBrowser.Model.Configuration;
+using MediaBrowser.Model.Authentication;
+using MediaBrowser.Model.Configuration;
using MediaBrowser.Model.DTO;
-using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Weather;
using System;
using System.IO;
diff --git a/MediaBrowser.Controller/Kernel.cs b/MediaBrowser.Controller/Kernel.cs index 2414364c0..0e4f7e5fd 100644 --- a/MediaBrowser.Controller/Kernel.cs +++ b/MediaBrowser.Controller/Kernel.cs @@ -5,6 +5,7 @@ using MediaBrowser.Controller.Library; using MediaBrowser.Controller.Providers;
using MediaBrowser.Controller.Resolvers;
using MediaBrowser.Controller.Weather;
+using MediaBrowser.Model.Authentication;
using MediaBrowser.Model.Configuration;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Progress;
diff --git a/MediaBrowser.Model/Entities/AuthenticationResult.cs b/MediaBrowser.Model/Authentication/AuthenticationResult.cs index 312e71f38..ebc253172 100644 --- a/MediaBrowser.Model/Entities/AuthenticationResult.cs +++ b/MediaBrowser.Model/Authentication/AuthenticationResult.cs @@ -1,6 +1,6 @@ using ProtoBuf;
-namespace MediaBrowser.Model.Entities
+namespace MediaBrowser.Model.Authentication
{
[ProtoContract]
public class AuthenticationResult
diff --git a/MediaBrowser.Model/MediaBrowser.Model.csproj b/MediaBrowser.Model/MediaBrowser.Model.csproj index baa04d72b..8b51f6ec4 100644 --- a/MediaBrowser.Model/MediaBrowser.Model.csproj +++ b/MediaBrowser.Model/MediaBrowser.Model.csproj @@ -36,7 +36,7 @@ <Compile Include="Configuration\ServerConfiguration.cs" />
<Compile Include="DTO\AudioInfo.cs" />
<Compile Include="DTO\SeriesInfo.cs" />
- <Compile Include="Entities\AuthenticationResult.cs" />
+ <Compile Include="Authentication\AuthenticationResult.cs" />
<Compile Include="DTO\DTOBaseItem.cs" />
<Compile Include="DTO\DTOUser.cs" />
<Compile Include="DTO\VideoInfo.cs" />
|
