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; }
}
}
+51
View File
@@ -0,0 +1,51 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using xAiModels.Constants;
using xModels.Base;
namespace xAiModels.Models
{
/// <summary>
/// Message Model of Ai ...
/// </summary>
public class XAiMessageDto : XBaseDto
{
/// <summary>
/// Id of Message ...
/// </summary>
public Guid Id { get; set; }
/// <summary>
/// Message of Chat ...
/// </summary>
public string Content { get; set; }
/// <summary>
/// Role of Message ...
/// </summary>
public XAiChatRole Role { get; set; }
/// <summary>
/// Created Time ...
/// </summary>
public DateTime CreatedOn { get; set; }
/// <summary>
/// Updated Time ...
/// </summary>
public DateTime UpdatedAt { get; set; }
/// <summary>
/// Conversation Id ...
/// </summary>
public Guid ConversationId { get; set; }
/// <summary>
/// Conversation ...
/// </summary>
public XAiConversationDto Conversation { get; set; }
}
}
+47
View File
@@ -0,0 +1,47 @@
using System;
using System.Collections.Generic;
using xModels.Base;
namespace xAiModels.Models
{
/// <summary>
/// an Ai Project is a Conceptual Separation of AI Conversations ...
/// </summary>
public class XAiProjectDto : XBaseDto
{
/// <summary>
/// Id of Project ...
/// </summary>
public Guid Id { get; set; }
/// <summary>
/// Title of Project ...
/// </summary>
public string Title { get; set; }
/// <summary>
/// Description of Project ...
/// </summary>
public string Description { get; set; }
/// <summary>
/// a Prompt for Project Start ...
/// </summary>
public string Prompt { get; set; }
/// <summary>
/// Created Time ...
/// </summary>
public DateTime CreatedOn { get; set; }
/// <summary>
/// Updated Time ...
/// </summary>
public DateTime UpdatedAt { get; set; }
/// <summary>
/// Conversations ...
/// </summary>
public IEnumerable<XAiConversationDto> Conversations { get; set; }
}
}