Support for nested comments
This commit is contained in:
@@ -9,8 +9,10 @@ namespace StudentHouseDashboard.Models
|
||||
{
|
||||
public Comment(int id, User author, string description, string title, DateTime publishDate) : base(id, author, description, title, publishDate)
|
||||
{
|
||||
Responses = new List<Comment>();
|
||||
}
|
||||
|
||||
|
||||
public List<Comment> Responses { get; set; }
|
||||
public void DownVote()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
|
Reference in New Issue
Block a user