Files
Hushian/Common/Dtos/Conversation/ADD_ConversationResponseDto.cs
mmrbnjd 8b89957a93 ...
2025-07-06 01:49:34 +03:30

17 lines
406 B
C#

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; }
}
}