Add Feedback Functions

This commit is contained in:
Andre Beging
2025-04-01 11:34:11 +02:00
parent bf64239625
commit 6d6d79f55a
9 changed files with 435 additions and 42 deletions

View File

@@ -0,0 +1,12 @@
namespace FoodsharingSiegen.Contracts.Enums
{
/// <summary>
/// Represents the types of feedback that can be associated with an interaction.
/// </summary>
public enum InteractionFeedback
{
Neutral = 10,
Positive = 20,
Negative = 30
}
}