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

20 lines
574 B
C#
Raw Permalink Normal View History

2025-06-28 15:31:07 +03:30
using Common.Enums;
namespace Common.Dtos.Conversation
{
2025-07-11 20:37:28 +03:30
public class Read_ConversationResponseDto
2025-06-28 15:31:07 +03:30
{
public int ID { get; set; }
public int ConversationID { get; set; }
public int? ExperID { get; set; }
public bool IsRead { get; set; } = false;
public string ExperName { 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; }
}
}