20 lines
570 B
C#
20 lines
570 B
C#
using Common.Enums;
|
|
|
|
|
|
namespace Common.Dtos.Conversation
|
|
{
|
|
public class Read_ConversationItemDto
|
|
{
|
|
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; }
|
|
}
|
|
}
|