move namespaces
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
using System;
|
||||
using NUnit.Framework;
|
||||
using Untappd.Net.Authentication;
|
||||
using Untappd.Net.Client;
|
||||
using Untappd.Net.OAuth;
|
||||
|
||||
namespace Untappd.Net.UnitTests.Authentication
|
||||
{
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
using System;
|
||||
using NUnit.Framework;
|
||||
using Untappd.Net.Client;
|
||||
using Untappd.Net.Authentication;
|
||||
|
||||
namespace Untappd.Net.UnitTests.Client
|
||||
{
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
using System;
|
||||
using NUnit.Framework;
|
||||
using Untappd.Net.Client;
|
||||
using Untappd.Net.Authentication;
|
||||
|
||||
namespace Untappd.Net.UnitTests.Client
|
||||
{
|
||||
|
||||
@@ -5,11 +5,11 @@ using Moq;
|
||||
using Newtonsoft.Json;
|
||||
using NUnit.Framework;
|
||||
using RestSharp;
|
||||
using Untappd.Net.Client;
|
||||
using Untappd.Net.Request;
|
||||
using Untappd.Net.Responses.BeerInfo;
|
||||
using Untappd.Net.Responses.Actions;
|
||||
using System.IO;
|
||||
using Untappd.Net.Authentication;
|
||||
|
||||
namespace Untappd.Net.UnitTests.Request
|
||||
{
|
||||
|
||||
@@ -3,7 +3,7 @@ using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using Newtonsoft.Json;
|
||||
using NUnit.Framework;
|
||||
using Untappd.Net.Client;
|
||||
using Untappd.Net.Authentication;
|
||||
using Untappd.Net.Request;
|
||||
using Untappd.Net.Responses.BeerInfo;
|
||||
using Untappd.Net.Responses.BeerSearch;
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
|
||||
namespace Untappd.Net.Client
|
||||
namespace Untappd.Net.Authentication
|
||||
{
|
||||
public class AuthenticatedUntappdCredentials : UntappdCredentials, IAuthenticatedUntappdCredentials
|
||||
{
|
||||
@@ -1,4 +1,4 @@
|
||||
namespace Untappd.Net.Client
|
||||
namespace Untappd.Net.Authentication
|
||||
{
|
||||
public interface IAuthenticatedUntappdCredentials : IUntappdCredentials
|
||||
{
|
||||
@@ -1,5 +1,5 @@
|
||||
|
||||
namespace Untappd.Net.Client
|
||||
namespace Untappd.Net.Authentication
|
||||
{
|
||||
public interface IUnAuthenticatedUntappdCredentials : IUntappdCredentials
|
||||
{
|
||||
@@ -1,7 +1,6 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Untappd.Net.Client
|
||||
namespace Untappd.Net.Authentication
|
||||
{
|
||||
public interface IUntappdCredentials
|
||||
{
|
||||
@@ -2,7 +2,7 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
|
||||
namespace Untappd.Net.Client
|
||||
namespace Untappd.Net.Authentication
|
||||
{
|
||||
public class UnAuthenticatedUntappdCredentials : UntappdCredentials, IUnAuthenticatedUntappdCredentials
|
||||
{
|
||||
@@ -1,8 +1,6 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Untappd.Net.Client
|
||||
namespace Untappd.Net.Authentication
|
||||
{
|
||||
public abstract class UntappdCredentials : IUntappdCredentials
|
||||
{
|
||||
@@ -1,7 +1,7 @@
|
||||
using System;
|
||||
using Untappd.Net.Client;
|
||||
using Untappd.Net.Authentication;
|
||||
|
||||
namespace Untappd.Net.Authentication
|
||||
namespace Untappd.Net.OAuth
|
||||
{
|
||||
public static class AuthenticationHelper
|
||||
{
|
||||
@@ -4,9 +4,9 @@ using System.Threading.Tasks;
|
||||
using Newtonsoft.Json;
|
||||
using Newtonsoft.Json.Linq;
|
||||
using RestSharp;
|
||||
using Untappd.Net.Client;
|
||||
using Untappd.Net.Exception;
|
||||
using System;
|
||||
using Untappd.Net.Authentication;
|
||||
|
||||
namespace Untappd.Net.Request
|
||||
{
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Untappd.Net.Client;
|
||||
using Untappd.Net.Authentication;
|
||||
using Untappd.Net.Exception;
|
||||
|
||||
namespace Untappd.Net.Request
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
using System.Threading.Tasks;
|
||||
using Untappd.Net.Client;
|
||||
using Untappd.Net.Authentication;
|
||||
|
||||
namespace Untappd.Net.Request
|
||||
{
|
||||
|
||||
@@ -46,7 +46,7 @@
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Authentication\AuthenticationHelper.cs" />
|
||||
<Compile Include="OAuth\AuthenticationHelper.cs" />
|
||||
<Compile Include="Exception\HttpErrorException.cs" />
|
||||
<Compile Include="Request\IAction.cs" />
|
||||
<Compile Include="Request\RepositoryGet.cs" />
|
||||
@@ -61,12 +61,12 @@
|
||||
<Compile Include="Responses\Actions\AddFriend.cs" />
|
||||
<Compile Include="Responses\Actions\ToastUntoast.cs" />
|
||||
<Compile Include="SingleObjectArrayConverter.cs" />
|
||||
<Compile Include="Client\AuthenticatedUntappdCredentials.cs" />
|
||||
<Compile Include="Client\IAuthenticatedUntappdCredentials.cs" />
|
||||
<Compile Include="Client\IUnAuthenticatedUntappdCredentials.cs" />
|
||||
<Compile Include="Client\IUntappdCredentials.cs" />
|
||||
<Compile Include="Client\UnAuthenticatedUntappdCredentials.cs" />
|
||||
<Compile Include="Client\UntappdCredentials.cs" />
|
||||
<Compile Include="Authentication\AuthenticatedUntappdCredentials.cs" />
|
||||
<Compile Include="Authentication\IAuthenticatedUntappdCredentials.cs" />
|
||||
<Compile Include="Authentication\IUnAuthenticatedUntappdCredentials.cs" />
|
||||
<Compile Include="Authentication\IUntappdCredentials.cs" />
|
||||
<Compile Include="Authentication\UnAuthenticatedUntappdCredentials.cs" />
|
||||
<Compile Include="Authentication\UntappdCredentials.cs" />
|
||||
<Compile Include="Constants.cs" />
|
||||
<Compile Include="Exception\BaseUntappdException.cs" />
|
||||
<Compile Include="Exception\EndpointConfigurationException.cs" />
|
||||
|
||||
Reference in New Issue
Block a user