...
This commit is contained in:
31
Common/Dtos/Conversation/ChatItemDto.cs
Normal file
31
Common/Dtos/Conversation/ChatItemDto.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
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 ChatItemDto
|
||||
{
|
||||
public int ID { get; set; }
|
||||
public string LastText { get; set; }
|
||||
public ConversationType LastMsgType { get; set; }
|
||||
public ConversationStatus status { get; set; }
|
||||
|
||||
public int? GroupID { get; set; }
|
||||
public string? GroupName { get; set; }
|
||||
|
||||
public int UserID { get; set; }
|
||||
public string? UserFullName { get; set; }
|
||||
|
||||
public int? ExperID { get; set; }
|
||||
public string? ExperFullName { get; set; }
|
||||
|
||||
public string LastMsgdate { get; set; }
|
||||
public string LastMsgtime { get; set; }
|
||||
|
||||
public List<ChatItemResponseDto> Responses { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user