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.
13 lines
313 B
C#
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; }
|
|
}
|
|
} |