aboutsummaryrefslogtreecommitdiff
path: root/src/Data/DevHive.Data.Models/Post.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Data/DevHive.Data.Models/Post.cs')
-rw-r--r--src/Data/DevHive.Data.Models/Post.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Data/DevHive.Data.Models/Post.cs b/src/Data/DevHive.Data.Models/Post.cs
index 15b6b77..c95a8f1 100644
--- a/src/Data/DevHive.Data.Models/Post.cs
+++ b/src/Data/DevHive.Data.Models/Post.cs
@@ -19,7 +19,7 @@ namespace DevHive.Data.Models
public List<Comment> Comments { get; set; } = new();
- public Rating Rating { get; set; } = new();
+ public List<Rating> Ratings { get; set; }
public List<PostAttachments> Attachments { get; set; } = new();
}