25 lines
646 B
C#
25 lines
646 B
C#
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 AIA : BaseEntity
|
|
{
|
|
public int ID { get; set; }
|
|
public DateTime Cdatetime { get; set; } = DateTime.Now;
|
|
|
|
public int CompanyID { get; set; }
|
|
public string aiKeyUser { get; set; }
|
|
public string Request { get; set; }
|
|
public string Response { get; set; }
|
|
[ForeignKey("CompanyID")]
|
|
public Company company { get; set; }
|
|
|
|
}
|
|
}
|