Files
fs-onboarding/FoodsharingSiegen.Contracts/Model/ProspectFilter.cs

19 lines
477 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 IdCheckPossible { get; set; }
public bool NoActivity { get; set; }
public bool RecentActivity { get; set; }
public bool DeletedOnly { get; set; }
}
}