Initial Commit ...

This commit is contained in:
2026-04-24 00:30:14 +03:30
commit 4146e420fe
10 changed files with 227 additions and 0 deletions
+47
View File
@@ -0,0 +1,47 @@
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; }
}
}