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

22 lines
509 B
C#
Raw Normal View History

2025-08-16 01:12:45 +03:30
using Hushian.Domain.Abstracts;
using System;
using System.Collections.Generic;
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; }
public int UserID { get; set; }
public string Request { get; set; }
public string Response { get; set; }
}
}