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.
12 lines
233 B
C#
12 lines
233 B
C#
namespace FoodsharingSiegen.Contracts.Enums
|
|
{
|
|
/// <summary>
|
|
/// Represents the state of a record within the system.
|
|
/// </summary>
|
|
public enum RecordState
|
|
{
|
|
Default = 10,
|
|
|
|
Archived = 20
|
|
}
|
|
} |