fixed namespaces

This commit is contained in:
Keivan Beigi 2014-10-02 21:40:32 -07:00
parent c10a9ddf6e
commit 6ada50783c
2 changed files with 4 additions and 5 deletions

View File

@ -1,14 +1,13 @@
using System; using System.Collections.Generic;
using System.Collections.Generic;
using FluentValidation; using FluentValidation;
using NzbDrone.Api.Config;
using NzbDrone.Api.Mapping; using NzbDrone.Api.Mapping;
using NzbDrone.Common;
using NzbDrone.Core.Configuration; using NzbDrone.Core.Configuration;
using NzbDrone.Core.RemotePathMappings; using NzbDrone.Core.RemotePathMappings;
using NzbDrone.Core.Validation.Paths; using NzbDrone.Core.Validation.Paths;
using Omu.ValueInjecter; using Omu.ValueInjecter;
namespace NzbDrone.Api.Config namespace NzbDrone.Api.RemotePathMappings
{ {
public class RemotePathMappingModule : NzbDroneRestModule<RemotePathMappingResource> public class RemotePathMappingModule : NzbDroneRestModule<RemotePathMappingResource>
{ {

View File

@ -1,7 +1,7 @@
using System; using System;
using NzbDrone.Api.REST; using NzbDrone.Api.REST;
namespace NzbDrone.Api.Config namespace NzbDrone.Api.RemotePathMappings
{ {
public class RemotePathMappingResource : RestResource public class RemotePathMappingResource : RestResource
{ {