summaryrefslogtreecommitdiff
path: root/backend/Elements.Data/Models/Suggestion.cs
diff options
context:
space:
mode:
Diffstat (limited to 'backend/Elements.Data/Models/Suggestion.cs')
-rw-r--r--backend/Elements.Data/Models/Suggestion.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/Elements.Data/Models/Suggestion.cs b/backend/Elements.Data/Models/Suggestion.cs
index ac442ec..3d626fc 100644
--- a/backend/Elements.Data/Models/Suggestion.cs
+++ b/backend/Elements.Data/Models/Suggestion.cs
@@ -4,7 +4,7 @@ public class Suggestion
{
public int Id { get; set; }
public required string Name { get; init; }
- public required string Icon { get; init; }
+ public required byte[] Icon { get; init; }
public required Element FirstIngredient { get; init; }
public required Element SecondIngredient { get; init; }
public required DateTime VotingEnd { get; init; }