using System;
using System.Collections.Generic;
using xModels.Base;
using xModels.Dtos;
namespace xAiModels.Models.Dtos
{
///
/// Describe a Project ...
///
public class XAiProjectDto : XBaseGuidIDEntityDto
{
///
/// User Identifier ...
///
///
public string OwnerId { get; set; }
///
/// Owner Info ...
///
public virtual XPersonDto Owner { get; set; } = null;
///
/// Title of Project ...
///
public string Title { get; set; }
///
/// Description of Project ...
///
public string Description { get; set; }
///
/// a Prompt for Project Start ...
///
public string Prompt { get; set; }
///
/// Created Time ...
///
public DateTime CreatedOn { get; set; }
///
/// Updated Time ...
///
public DateTime UpdatedAt { get; set; }
///
/// Conversations ...
///
public virtual IList Conversations { get; set; } = [];
}
}