using System; using System.Collections.Generic; using xModels.Base; using xModels.Dtos; namespace xAiModels.Models { /// /// an Ai Project is a Conceptual Separation of AI Conversations ... /// public class XAiProjectDto : XBaseDto { /// /// Id of Project ... /// public Guid Id { get; set; } /// /// 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; } /// /// User Identifier ... /// /// public string OwnerId { get; set; } public XPersonDto Owner { get; set; } /// /// Conversations ... /// public IEnumerable Conversations { get; set; } } }