aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Data/Models/Post.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DevHive.Data/Models/Post.cs')
-rw-r--r--src/DevHive.Data/Models/Post.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/DevHive.Data/Models/Post.cs b/src/DevHive.Data/Models/Post.cs
index c513eb4..2d144d3 100644
--- a/src/DevHive.Data/Models/Post.cs
+++ b/src/DevHive.Data/Models/Post.cs
@@ -18,6 +18,9 @@ namespace DevHive.Data.Models
public List<Comment> Comments { get; set; } = new();
+ public Guid RatingId { get; set; }
+ public Rating Rating { get; set; }
+
public List<string> FileUrls { get; set; } = new();
}
}