Files
Hushian/Common/Dtos/aiNewResponseDto.cs

22 lines
516 B
C#
Raw Permalink Normal View History

2025-08-18 00:28:32 +03:30
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; }
2025-08-18 14:18:08 +03:30
public string aiKeyUser { get; set; }
2025-08-18 00:28:32 +03:30
public string requestText { get; set; }
}
public class aiResponseDto
{
public DateTime dateTime { get; set; }
public string requestText { get; set; }
public string responseText { get; set; }
}
}