2025-06-28 15:31:07 +03:30
|
|
|
|
|
2025-07-06 01:49:34 +03:30
|
|
|
|
using Common.Enums;
|
|
|
|
|
|
2025-06-28 15:31:07 +03:30
|
|
|
|
namespace Common.Dtos.Conversation
|
|
|
|
|
{
|
2025-07-06 01:49:34 +03:30
|
|
|
|
public class ADD_ConversationResponseDto
|
2025-06-28 15:31:07 +03:30
|
|
|
|
{
|
|
|
|
|
public int ConversationID { get; set; }
|
2025-07-06 01:49:34 +03:30
|
|
|
|
public ConversationType Type { get; set; }
|
2025-06-28 15:31:07 +03:30
|
|
|
|
public string Text { get; set; }
|
|
|
|
|
public string? FileName { get; set; }
|
|
|
|
|
public string? FileType { get; set; }
|
|
|
|
|
public byte[]? FileContent { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|