Skip to content

Commit

Permalink
fix IResourceResponsesAdvice
Browse files Browse the repository at this point in the history
  • Loading branch information
kinosang committed Apr 19, 2024
1 parent 82d6de8 commit ea0f8da
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using System.Collections.Immutable;
using System.Collections.Generic;
using Microsoft.AspNetCore.Http;
using Schemata.Abstractions.Advices;
using Schemata.Abstractions.Entities;

namespace Schemata.Resource.Foundation.Advices;

public interface IResourceResponsesAdvice<TSummary> : IAdvice<ImmutableArray<TSummary>?, HttpContext>
public interface IResourceResponsesAdvice<TSummary> : IAdvice<IEnumerable<TSummary>?, HttpContext>
where TSummary : class, IIdentifier;

0 comments on commit ea0f8da

Please sign in to comment.