22 lines
486 B
C#
22 lines
486 B
C#
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; }
|
|
|
|
}
|
|
}
|