BindaTests.NeededObjects.Comment.Comment C# (CSharp) Method

Comment() public method

public Comment ( string author, string body ) : System.Collections.Generic
author string
body string
return System.Collections.Generic
        public Comment(string author, string body)
        {
            Author = author;
            Body = body;
            Comments = new List<Comment>();
        }