This commit is contained in:
mmrbnjd
2025-08-16 01:12:45 +03:30
parent eeb659a0df
commit 029a10e1af
8 changed files with 621 additions and 5 deletions

View File

@@ -0,0 +1,21 @@
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; }
}
}