This commit is contained in:
mmrbnjd
2025-07-06 01:49:34 +03:30
parent e15790488e
commit 8b89957a93
10 changed files with 143 additions and 14 deletions

View File

@@ -3,6 +3,7 @@ namespace Common.Dtos.Conversation
{
public class ADD_ConversationDto
{
public int UserID { get; set; }
public string Question { get; set; }
public int? GroupID { get; set; }
public int CompanyID { get; set; }

View File

@@ -1,9 +1,12 @@

using Common.Enums;
namespace Common.Dtos.Conversation
{
public class ADD_ConversationItemDto
public class ADD_ConversationResponseDto
{
public int ConversationID { get; set; }
public ConversationType Type { get; set; }
public string Text { get; set; }
public string? FileName { get; set; }
public string? FileType { get; set; }

View File

@@ -8,6 +8,6 @@ namespace Common.Enums
{
public enum ConversationType
{
EU = 1, UE = 2
EU = 1, UE = 2,Bot=3
}
}