diff options
Diffstat (limited to 'src/DevHive.Data/Models/Post.cs')
| -rw-r--r-- | src/DevHive.Data/Models/Post.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/DevHive.Data/Models/Post.cs b/src/DevHive.Data/Models/Post.cs index 8fb3e91..95d7ac8 100644 --- a/src/DevHive.Data/Models/Post.cs +++ b/src/DevHive.Data/Models/Post.cs @@ -18,8 +18,7 @@ namespace DevHive.Data.Models public List<Comment> Comments { get; set; } = new(); - // public Guid RatingId { get; set; } - // public Rating Rating { get; set; } = new(); + public Rating Rating { get; set; } = new(); public List<string> FileUrls { get; set; } = new(); } |
