22 lines
516 B
C#
22 lines
516 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Common.Dtos
|
|
{
|
|
public class aiNewResponseDto
|
|
{
|
|
public int companyId { get; set; }
|
|
public string aiKeyUser { get; set; }
|
|
public string requestText { get; set; }
|
|
}
|
|
public class aiResponseDto
|
|
{
|
|
public DateTime dateTime { get; set; }
|
|
public string requestText { get; set; }
|
|
public string responseText { get; set; }
|
|
}
|
|
}
|