Prospect filter

This commit is contained in:
Andre Beging
2025-03-27 18:42:21 +01:00
parent 4d646ad7f6
commit 7efd48c794
8 changed files with 99 additions and 77 deletions

View File

@@ -0,0 +1,9 @@
namespace FoodsharingSiegen.Contracts.Model
{
public class ProspectFilter
{
public string? Text { get; set; }
public bool WithoutStepInBriefing { get; set; }
}
}