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

@@ -0,0 +1,16 @@

using Common.Enums;
namespace Common.Dtos.Conversation
{
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; }
public byte[]? FileContent { get; set; }
}
}