12 lines
291 B
C#
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
|
|
}
|
|
} |