Darstellung der Prospects fragmentiert

This commit is contained in:
Andre Beging
2023-02-07 23:13:09 +01:00
parent 1b59a9461b
commit df40e2b769
12 changed files with 317 additions and 39 deletions

View File

@@ -0,0 +1,9 @@
using FoodsharingSiegen.Contracts.Entity;
namespace FoodsharingSiegen.Contracts.Model
{
/// <summary>
/// The get prospects parameter
/// </summary>
public record GetProspectsParameter(List<InteractionType>? MustHaveInteractions = null, List<InteractionType>? CannotHaveInteractions = null);
}