Skip to content

Commit 3a18c0f

Browse files
author
Chris Santero
committed
move IPayload namespace
1 parent bf9e4c8 commit 3a18c0f

4 files changed

Lines changed: 4 additions & 2 deletions

File tree

JSONAPI.EntityFramework.Tests.TestWebApp/Controllers/PresidentsController.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
using System.Web;
55
using System.Web.Http;
66
using JSONAPI.EntityFramework.Tests.TestWebApp.Models;
7+
using JSONAPI.Payload;
78
using Newtonsoft.Json.Linq;
89

910
namespace JSONAPI.EntityFramework.Tests.TestWebApp.Controllers

JSONAPI/JSONAPI.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
<Compile Include="Extensions\TypeExtensions.cs" />
9595
<Compile Include="Http\ApiController.cs" />
9696
<Compile Include="Http\PascalizedControllerSelector.cs" />
97-
<Compile Include="IPayload.cs" />
97+
<Compile Include="Payload\IPayload.cs" />
9898
<Compile Include="Json\ErrorSerializer.cs" />
9999
<Compile Include="Json\GuidErrorIdProvider.cs" />
100100
<Compile Include="Json\IErrorIdProvider.cs" />

JSONAPI/Json/JsonApiFormatter.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
using System.Threading.Tasks;
1919
using System.Web.Http;
2020
using JSONAPI.Extensions;
21+
using JSONAPI.Payload;
2122

2223
namespace JSONAPI.Json
2324
{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Newtonsoft.Json.Linq;
22

3-
namespace JSONAPI
3+
namespace JSONAPI.Payload
44
{
55
/// <summary>
66
/// Actions may return objects that implement this interface in order to

0 commit comments

Comments
 (0)