using Hushian.Domain.Abstracts; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Hushian.Domain.Entites { public class Prompt : BaseEntity { public int ID { get; set; } public DateTime Cdatetime { get; set; } public int CompanyID { get; set; } public string Test { get; set; } [ForeignKey("CompanyID")] public Company Company { get; set; } } }