This commit is contained in:
mmrbnjd
2025-08-18 14:18:08 +03:30
parent 7ce8812098
commit 067607d98a
19 changed files with 715 additions and 55 deletions

View File

@@ -1,6 +1,7 @@
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;
@@ -13,9 +14,11 @@ namespace Hushian.Domain.Entites
public DateTime Cdatetime { get; set; } = DateTime.Now;
public int CompanyID { get; set; }
public int UserID { get; set; }
public string aiKeyUser { get; set; }
public string Request { get; set; }
public string Response { get; set; }
[ForeignKey("CompanyID")]
public Company company { get; set; }
}
}