using System; using System.ComponentModel.DataAnnotations; using xModels.Base; namespace xAiModels.Models.Entities { /// /// Describe a Project ... /// 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; } } }