9 lines
314 B
C#
9 lines
314 B
C#
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);
|
|
} |