using System; using System.Collections.Generic; using xModels.Base; namespace xAiApi.AI.Models.Entities { public class XAiProject : XBaseGuidIDEntity { /// /// 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 IEnumerable Conversations { get; set; } } }