Class IssueComment
A comment is a block of text posted about issue.
public class IssueComment
- Inheritance
-
IssueComment
- Inherited Members
- Extension Methods
Constructors
IssueComment()
public IssueComment()
Properties
Author
The person who posted the comment.
public Guid Author { get; set; }
Property Value
AuthorName
The name of the author posting the comment.
public string AuthorName { get; set; }
Property Value
Authored
The date and time the comment was posted.
public DateTimeOffset Authored { get; set; }
Property Value
Identifier
Uniquely identifies the comment.
public Guid Identifier { get; set; }
Property Value
Instructor
The instructor or training provider to whom the comment pertains.
public Guid? Instructor { get; set; }
Property Value
- Guid?
Revised
The date and time the comment was revised.
public DateTimeOffset? Revised { get; set; }
Property Value
Revisor
The person who revised the comment.
public Guid? Revisor { get; set; }
Property Value
- Guid?
RevisorName
The name of the revisor posting the comment.
public string RevisorName { get; set; }
Property Value
Text
The body text for the comment itself. (We do NOT need multilingual support here. Authors are expected to post comments in whatever language they speak.)
public string Text { get; set; }