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.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/backend/Elements.Data/Models/Suggestion.cs b/backend/Elements.Data/Models/Suggestion.cs
index bd936a4..7f30761 100644
--- a/backend/Elements.Data/Models/Suggestion.cs
+++ b/backend/Elements.Data/Models/Suggestion.cs
@@ -3,6 +3,7 @@ namespace Elements.Data.Models;
public class Suggestion
{
public int Id { get; set; }
+ public required DateTime CreationDate { get; init; }
public required string Name { get; init; }
public required byte[] Icon { get; init; }
public required int FirstElementId { get; init; }