Files
xAiModels/Models/XAiProjectDto.cs
T
2026-04-24 13:42:02 +03:30

55 lines
1.3 KiB
C#

using System;
using System.Collections.Generic;
using xModels.Base;
using xModels.Dtos;
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>
/// User Identifier ...
/// </summary>
/// <value></value>
public string OwnerId { get; set; }
public XPersonDto Owner { get; set; }
/// <summary>
/// Conversations ...
/// </summary>
public IEnumerable<XAiConversationDto> Conversations { get; set; }
}
}