Moved enums to a dedicated namespace and updated references across the codebase. Renamed the `Info` field in the `Interaction` entity to `Info1`, including necessary migrations and UI adjustments. These changes improve the organization and consistency of the codebase.
12 lines
232 B
C#
12 lines
232 B
C#
namespace FoodsharingSiegen.Contracts.Enums
|
|
{
|
|
/// <summary>
|
|
/// Represents the state of a record within the system.
|
|
/// </summary>
|
|
public enum RecordState
|
|
{
|
|
Default = 10,
|
|
|
|
Deleted = 20
|
|
}
|
|
} |