This commit is contained in:
mmrbnjd
2025-08-18 00:28:32 +03:30
parent bd1f907673
commit a10fbeab62
11 changed files with 711 additions and 4 deletions

View File

@@ -0,0 +1,21 @@
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 int userId { 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; }
}
}