using FoodsharingSiegen.Contracts.Entity;
using FoodsharingSiegen.Contracts.Enums;
namespace FoodsharingSiegen.Contracts.Model
{
///
/// The get prospects parameter
///
public record GetProspectsParameter(
List? MustHaveInteractions = null,
List? CannotHaveInteractions = null,
bool IncludeDeleted = false,
int Skip = 0,
int Take = 50);
}