10 lines
223 B
C#
10 lines
223 B
C#
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; }
|
|
} |