24 lines
675 B
C#
24 lines
675 B
C#
![]() |
using Common.Enums;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Common.Dtos.Conversation
|
|||
|
{
|
|||
|
public class ChatItemResponseDto
|
|||
|
{
|
|||
|
public int ID { get; set; }
|
|||
|
public int ChatItemID { 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; }
|
|||
|
}
|
|||
|
}
|