Class AssistConversationItem
Represents a conversation item in the conversation history.
Inheritance
System.Object
AssistConversationItem
Namespace: Syncfusion.Maui.AIAssistView
Assembly: Syncfusion.Maui.AIAssistView.dll
Syntax
public class AssistConversationItem : Object
Remarks
The AssistConversationItem class provides a container for conversation metadata including title, messages, timestamp, participants, and tags.
Constructors
AssistConversationItem()
Initializes a new instance of the AssistConversationItem class.
Declaration
public AssistConversationItem()
Properties
AssistItems
Gets or sets the collection of assist items (messages) in this conversation.
Declaration
public IList<IAssistItem> AssistItems { get; set; }
Property Value
| Type |
|---|
| System.Collections.Generic.IList<IAssistItem> |
DateTime
Gets or sets the timestamp of the first message in the conversation.
Declaration
public DateTime DateTime { get; set; }
Property Value
| Type |
|---|
| System.DateTime |
Remarks
This timestamp is used for grouping and sorting conversations by time. Must be populated when the conversation is created or when the first item is added.
Title
Gets or sets the first message of the conversation.
Declaration
public string Title { get; set; }
Property Value
| Type |
|---|
| System.String |