Files
Hushian/Common/Dtos/aiNewResponseDto.cs
mmrbnjd a10fbeab62 ...
2025-08-18 00:28:32 +03:30

22 lines
510 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 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; }
}
}