47 lines
1.1 KiB
C#
47 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using xModels.Base;
|
|
|
|
namespace xAiModels.Models
|
|
{
|
|
/// <summary>
|
|
/// Conversation Describe ...
|
|
/// </summary>
|
|
public class XAiConversationDto : XBaseDto
|
|
{
|
|
/// <summary>
|
|
/// Id of Conversation ...
|
|
/// </summary>
|
|
public Guid Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Title of Conversation ...
|
|
/// </summary>
|
|
public string Title { get; set; }
|
|
|
|
/// <summary>
|
|
/// Created Time ...
|
|
/// </summary>
|
|
public DateTime CreatedOn { get; set; }
|
|
|
|
/// <summary>
|
|
/// Updated Time ...
|
|
/// </summary>
|
|
public DateTime UpdatedAt { get; set; }
|
|
|
|
/// <summary>
|
|
/// Messages of Conversation ...
|
|
/// </summary>
|
|
public IEnumerable<XAiMessageDto> Messages { get; set; }
|
|
|
|
/// <summary>
|
|
/// Project ID ...
|
|
/// </summary>
|
|
public Guid ProjectId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Project ...
|
|
/// </summary>
|
|
public XAiProjectDto Project { get; set; }
|
|
}
|
|
} |