....
This commit is contained in:
21
Hushian.Domain/Entites/AIA.cs
Normal file
21
Hushian.Domain/Entites/AIA.cs
Normal 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; }
|
||||
|
||||
}
|
||||
}
|
@@ -37,6 +37,8 @@ namespace Hushian.Domain.Entites
|
||||
= new List<Conversation>();
|
||||
public ICollection<CompanyContentInfo> CompanyContentInfos { get; set; }
|
||||
= new List<CompanyContentInfo>();
|
||||
public ICollection<Prompt> prompts { get; set; }
|
||||
= new List<Prompt>();
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
21
Hushian.Domain/Entites/Prompt.cs
Normal file
21
Hushian.Domain/Entites/Prompt.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
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 Prompt : BaseEntity
|
||||
{
|
||||
public int ID { get; set; }
|
||||
public DateTime Cdatetime { get; set; }
|
||||
public int CompanyID { get; set; }
|
||||
public string Test { get; set; }
|
||||
|
||||
[ForeignKey("CompanyID")]
|
||||
public Company Company { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user