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 7753379..ac442ec 100644
--- a/backend/Elements.Data/Models/Suggestion.cs
+++ b/backend/Elements.Data/Models/Suggestion.cs
@@ -2,7 +2,7 @@ namespace Elements.Data.Models;
public class Suggestion
{
- public required int Id { get; set; }
+ public int Id { get; set; }
public required string Name { get; init; }
public required string Icon { get; init; }
public required Element FirstIngredient { get; init; }