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.
10 lines
384 B
C#
10 lines
384 B
C#
using FoodsharingSiegen.Contracts.Entity;
|
|
using FoodsharingSiegen.Contracts.Enums;
|
|
|
|
namespace FoodsharingSiegen.Contracts.Model
|
|
{
|
|
/// <summary>
|
|
/// The get prospects parameter
|
|
/// </summary>
|
|
public record GetProspectsParameter(List<InteractionType>? MustHaveInteractions = null, List<InteractionType>? CannotHaveInteractions = null, bool IncludeDeleted = false);
|
|
} |