Interface IComment
An interface that represents the comment on an annotation topic.
Namespace: Unity.Cloud.Annotation
Syntax
public interface IComment
Properties
Author
Returns the author of the comment.
Declaration
Author Author { get; }
Property Value
| Type | Description |
|---|---|
| Author | The author of the comment. |
Date
Returns the creation date of the comment.
Declaration
DateTime Date { get; }
Property Value
| Type | Description |
|---|---|
| DateTime | The creation date of the comment. |
Id
Returns the comment ID.
Declaration
Guid Id { get; }
Property Value
| Type | Description |
|---|---|
| Guid | The comment ID. |
ModifiedDate
Returns the modification date of the comment.
Declaration
DateTime ModifiedDate { get; }
Property Value
| Type | Description |
|---|---|
| DateTime | The modification date of the comment. |
Read
Returns the read status of the comment.
Declaration
bool Read { get; }
Property Value
| Type | Description |
|---|---|
| Boolean | The read status of the comment. |
Text
Returns the text content of the comment.
Declaration
string Text { get; }
Property Value
| Type | Description |
|---|---|
| String | The text content of the comment. |
TopicId
Returns the parent topic ID.
Declaration
Guid TopicId { get; }
Property Value
| Type | Description |
|---|---|
| Guid | The parent topic ID. |