using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using xModels.Base; namespace xAiApi.AI.Models.Entities { public class XAiProject : XBaseGuidIDEntity { /// /// User Identifier ... /// /// [Required] [StringLength(255)] public string OwnerId { get; set; } /// /// Title of Project ... /// [Required] [StringLength(255)] public string Title { get; set; } /// /// Description of Project ... /// [StringLength(1000)] 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; } } }