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.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hushian.Domain.Entites
{
class AIA : BaseEntity
{
public int ID { get; set; }
public DateTime Cdatetime { get; set; }
public int CompanyID { get; set; }
public int UserID { get; set; }
public string Request { get; set; }
public string Response { get; set; }
}
}