TicketImporter.Comment.Comment C# (CSharp) Method

Comment() public method

public Comment ( User author, string body, System.DateTime createdOn ) : System
author User
body string
createdOn System.DateTime
return System
        public Comment(User author, string body, DateTime createdOn)
        {
            Author = author;
            Body = JiraString.StripNonPrintable(body);
            CreatedOn = createdOn;
            Updated = createdOn;
        }
Comment