Files
FoodsharingOnboarding/FoodsharingSiegen.Contracts/Model/ProspectFilter.cs
2025-03-31 14:06:23 +02:00

15 lines
368 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; }
public bool DeletedOnly { get; set; }
}
}