Files
Hushian/Hushian.Domain/Entites/AIA.cs

25 lines
646 B
C#
Raw Normal View History

2025-08-16 01:12:45 +03:30
using Hushian.Domain.Abstracts;
using System;
using System.Collections.Generic;
2025-08-18 14:18:08 +03:30
using System.ComponentModel.DataAnnotations.Schema;
2025-08-16 01:12:45 +03:30
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hushian.Domain.Entites
{
2025-08-18 00:28:32 +03:30
public class AIA : BaseEntity
2025-08-16 01:12:45 +03:30
{
public int ID { get; set; }
2025-08-18 00:28:32 +03:30
public DateTime Cdatetime { get; set; } = DateTime.Now;
2025-08-16 01:12:45 +03:30
public int CompanyID { get; set; }
2025-08-18 14:18:08 +03:30
public string aiKeyUser { get; set; }
2025-08-16 01:12:45 +03:30
public string Request { get; set; }
public string Response { get; set; }
2025-08-18 14:18:08 +03:30
[ForeignKey("CompanyID")]
public Company company { get; set; }
2025-08-16 01:12:45 +03:30
}
}