Replaced 'Deleted' with 'Archived' across the codebase to better reflect the intent of the state. Adjusted related features, including filters, UI labels, navigation, and permissions. Introduced a 'Recent Activity' filter for improved activity tracking.
17 lines
426 B
C#
17 lines
426 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 RecentActivity { get; set; }
|
|
|
|
public bool DeletedOnly { get; set; }
|
|
}
|
|
} |