Class
MessageModel

Represents a message model containing information about a message, its author, and creation date.

Definition

Constructors

MessageModel()

Declaration

cs-api-definition
public MessageModel()

Properties

Author

Gets or sets the author of the message.

Declaration

cs-api-definition
public Author Author { get; set; }

Property Value

Author

CreationDate

Gets or sets the date and time when the message was created.

Declaration

cs-api-definition
public DateTime CreationDate { get; set; }

Property Value

DateTime

Text

Gets or sets the text content of the message.

Declaration

cs-api-definition
public string Text { get; set; }

Property Value

string

Title

Gets or sets the title of the message.

Declaration

cs-api-definition
public string Title { get; set; }

Property Value

string