Trial - boosting prospect grid loading performance

This commit is contained in:
troogs
2026-09-20 11:09:44 +02:00
parent 8b298b37c7
commit b33f9f6c52
15 changed files with 688 additions and 73 deletions
@@ -6,5 +6,10 @@ namespace FoodsharingSiegen.Contracts.Model
/// <summary>
/// The get prospects parameter
/// </summary>
public record GetProspectsParameter(List<InteractionType>? MustHaveInteractions = null, List<InteractionType>? CannotHaveInteractions = null, bool IncludeDeleted = false);
public record GetProspectsParameter(
List<InteractionType>? MustHaveInteractions = null,
List<InteractionType>? CannotHaveInteractions = null,
bool IncludeDeleted = false,
int Skip = 0,
int Take = 50);
}