Files
Hushian/Common/Dtos/Conversation/ADD_ConversationItemDto.cs

14 lines
330 B
C#
Raw Normal View History

2025-06-28 15:31:07 +03:30

namespace Common.Dtos.Conversation
{
public class ADD_ConversationItemDto
{
public int ConversationID { get; set; }
public string Text { get; set; }
public string? FileName { get; set; }
public string? FileType { get; set; }
public byte[]? FileContent { get; set; }
}
}