Skip to content

Commit

Permalink
move ListResponse to Abstractions
Browse files Browse the repository at this point in the history
  • Loading branch information
kinosang committed Apr 18, 2024
1 parent 26346ca commit 8c7286e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Schemata.Resource.Foundation.Models;
namespace Schemata.Abstractions.Resource;

public class ListRequest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Collections.Generic;

namespace Schemata.Resource.Foundation.Models;
namespace Schemata.Abstractions.Resource;

public class ListResponse<TSummary>
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Microsoft.AspNetCore.Http;
using Schemata.Abstractions.Advices;
using Schemata.Abstractions.Entities;
using Schemata.Resource.Foundation.Models;
using Schemata.Abstractions.Resource;

namespace Schemata.Resource.Foundation.Advices;

Expand Down
1 change: 1 addition & 0 deletions src/Schemata.Resource.Http/ResourceController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
using Schemata.Abstractions.Advices;
using Schemata.Abstractions.Entities;
using Schemata.Abstractions.Exceptions;
using Schemata.Abstractions.Resource;
using Schemata.Entity.Repository;
using Schemata.Mapping.Skeleton;
using Schemata.Resource.Foundation.Advices;
Expand Down

0 comments on commit 8c7286e

Please sign in to comment.