summaryrefslogtreecommitdiff
path: root/backend/Elements.Data/Models/Suggestion.cs
diff options
context:
space:
mode:
authorPaweł Bernaciak <pawelbernaciak@zohomail.eu>2023-10-25 20:28:34 +0200
committerPaweł Bernaciak <pawelbernaciak@zohomail.eu>2023-10-25 20:28:34 +0200
commit2e86ace4593d32a2cb1a4be9a758911ff25e4a89 (patch)
tree33582ae0ef03f6a1556f950a43004bba6c1ee0f2 /backend/Elements.Data/Models/Suggestion.cs
parent68e4282555a55f429320b80f09f609970dc76e92 (diff)
Model fixes
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; }