Files
FoodsharingOnboarding/FoodsharingSiegen.Contracts/Model/ProspectFilter.cs
Andre Beging 350e2003ca Add new filters and refactor InteractionDialog handling
Introduced new filters for prospects: "WithoutIdCheck" and "NoActivity" with associated UI controls. Refactored `InteractionDialog.ShowAsync` to use a new parameter record for cleaner code and better extensibility. These changes enhance usability and maintainability by providing additional filtering options and streamlining dialog interactions.
2025-03-28 20:07:12 +01:00

13 lines
313 B
C#

namespace FoodsharingSiegen.Contracts.Model
{
public class ProspectFilter
{
public string? Text { get; set; }
public bool WithoutStepInBriefing { get; set; }
public bool WithoutIdCheck { get; set; }
public bool NoActivity { get; set; }
}
}