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>
/// 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; }
}
}