Files
FoodsharingOnboarding/FoodsharingSiegen.Contracts/Enums/InteractionFeedback.cs
2025-04-01 11:34:11 +02:00

12 lines
291 B
C#

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
}
}