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

32 lines
852 B
C#
Raw Permalink Normal View History

2025-07-28 17:41:14 +03:30
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; }
}
}