15 lines
454 B
C#
15 lines
454 B
C#
using FoodsharingSiegen.Contracts.Entity;
|
|
using FoodsharingSiegen.Contracts.Enums;
|
|
|
|
namespace FoodsharingSiegen.Contracts.Model
|
|
{
|
|
/// <summary>
|
|
/// The get prospects parameter
|
|
/// </summary>
|
|
public record GetProspectsParameter(
|
|
List<InteractionType>? MustHaveInteractions = null,
|
|
List<InteractionType>? CannotHaveInteractions = null,
|
|
bool IncludeDeleted = false,
|
|
int Skip = 0,
|
|
int Take = 50);
|
|
} |