Table of Contents

Class IssueComment

Namespace
InSite.Domain.Issues
Assembly
Shift.Sdk.dll

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

Guid

AuthorName

The name of the author posting the comment.

public string AuthorName { get; set; }

Property Value

string

Authored

The date and time the comment was posted.

public DateTimeOffset Authored { get; set; }

Property Value

DateTimeOffset

Identifier

Uniquely identifies the comment.

public Guid Identifier { get; set; }

Property Value

Guid

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

DateTimeOffset?

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

string

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; }

Property Value

string