Files
Hushian/Common/Dtos/aiNewResponseDto.cs
mmrbnjd 067607d98a ...
2025-08-18 14:18:08 +03:30

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; }
}
}