Basic comment building

This commit is contained in:
2026-01-07 20:41:57 -05:00
parent 9114382318
commit a574922178
6 changed files with 416 additions and 8 deletions

10
Model/Comment.cs Normal file
View File

@@ -0,0 +1,10 @@
public class Comments
{
public Comments()
{
Replies = new List<Comments>();
}
public String Author { get; set; }
public String Body { get; set; }
public List<Comments> Replies { get; set; }
}