This commit is contained in:
2026-07-26 21:19:40 +03:30
parent 429c07a02d
commit 2144e9f8a7
82 changed files with 2712 additions and 146 deletions
+46
View File
@@ -0,0 +1,46 @@
using System;
using xModels.Base;
using xModels.Dtos;
namespace xAiModels.Models.Dtos
{
/// <summary>
/// Conversation Describe ...
/// </summary>
public class XAiConversationDto : XBaseGuidIDEntityDto
{
/// <summary>
/// User Identifier ...
/// </summary>
/// <value></value>
public string OwnerId { get; set; }
/// <summary>
/// Owner Info ...
/// </summary>
public virtual XPersonDto Owner { get; set; } = null;
/// <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>
/// Project ID ...
/// </summary>
public Guid ProjectId { get; set; }
public virtual string ProjectTitle { get; set; } = null;
public virtual string ProjectDescription { get; set; } = null;
}
}