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.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DevHive.Data/Models/Post.cs b/src/DevHive.Data/Models/Post.cs
index f7bca43..1b1ec4d 100644
--- a/src/DevHive.Data/Models/Post.cs
+++ b/src/DevHive.Data/Models/Post.cs
@@ -16,8 +16,8 @@ namespace DevHive.Data.Models
public DateTime TimeCreated { get; set; }
- public List<Comment> Comments { get; set; }
+ public List<Comment> Comments { get; set; } = new();
- // public List<string> Files { get; set; }
+ // public List<string> Files { get; set; } = new();
}
}